-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (46 loc) · 1.37 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
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
extras_require = {
'lint': [
'pep8',
],
'dev': [
'bumpversion>=0.5.3,<1',
'wheel',
'twine',
],
}
extras_require['dev'] = (
extras_require['dev'] +
extras_require['lint']
)
setup(
name='django-volt-admin',
version='1.0.3',
description='Django admin implementation of volt admin dashboard',
long_description=open('README.md', 'r', encoding='utf-8').read(),
long_description_content_type="text/markdown",
include_package_data=True,
url='https://github.com/adams-okode/django-volt-admin',
author='Adams Okode',
author_email='adamsokode@gmail.com',
license='MIT',
packages=find_packages(
exclude=['tests', 'tests.*', 'licenses', 'requirements']),
install_requires=[
'Django>=2.2',
],
extras_require=extras_require,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)