forked from django-admin-tools/django-admin-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·46 lines (42 loc) · 1.6 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from admin_tools import VERSION
repo_url = 'https://github.com/django-admin-tools/django-admin-tools'
long_desc = '''
%s
%s
''' % (open('README.rst').read(), open('CHANGELOG').read())
setup(
name='django-admin-tools',
version=VERSION.replace(' ', '-'),
description='A collection of tools for the django administration interface',
long_description=long_desc,
long_description_content_type='text/x-rst',
author='David Jean Louis',
author_email='[email protected]',
url=repo_url,
download_url='https://pypi.python.org/packages/source/d/django-admin-tools/django-admin-tools-%s.tar.gz' % VERSION,
packages=find_packages(exclude=['test_proj*']),
include_package_data=True,
license='MIT License',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Topic :: Software Development :: Libraries :: Python Modules'
],
zip_safe=False,
)