forked from django-request/django-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (53 loc) · 1.72 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
50
51
52
53
54
#!/usr/bin/env python
import request
from setuptools import setup
setup(
name='django-request',
version=request.__version__,
description=open('docs/description.txt').read(),
long_description=open('docs/long_description.txt').read(),
author='Kyle Fuller',
author_email='[email protected]',
maintainer='Mariusz Felisiak',
maintainer_email='[email protected]',
url=request.__URL__,
download_url='https://pypi.org/project/django-request/',
packages=[
'request',
'request.migrations',
'request.templatetags',
'request.management',
'request.management.commands',
],
package_data={'request': [
'templates/admin/request/*.html',
'templates/admin/request/request/*.html',
'templates/request/plugins/*.html',
'static/request/js/*.js',
'locale/*/LC_MESSAGES/*.*',
]},
install_requires=[
'Django>=1.10',
'python-dateutil',
'six',
],
license=request.__licence__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
],
)