-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
from setuptools import setup
CURRENT_WORKING_DIRECTORY = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(CURRENT_WORKING_DIRECTORY, 'README.md')) as fp:
README = fp.read()
setup(
name='django-vb-admin',
version='1.1.10',
description='Create custom Django project with style...',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/vbyazilim/django-vb-admin',
author='vb YAZILIM',
author_email='[email protected]',
license='MIT',
python_requires='>=3.6',
install_requires=['django-vb-baseapp'],
packages=['vb_admin'],
entry_points={
'console_scripts': ['django-vb-admin=vb_admin:execute_from_command_line']
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities',
'Framework :: Django',
'Topic :: Software Development :: Libraries :: Python Modules',
],
include_package_data=True,
)