-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
57 lines (54 loc) · 1.92 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
55
56
57
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import versioneer
setup(
name='django-sendfile2',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Abstraction to offload file uploads to web-server (e.g. Apache with mod_xsendfile)'
' once Django has checked permissions etc.',
long_description=open('README.rst').read(),
author='Matt Molyneaux',
author_email='moggers87+git@moggers87.co.uk',
url='https://github.com/moggers87/django-sendfile2',
license='BSD',
install_requires=['django'],
packages=['django_sendfile', 'django_sendfile.backends'],
extras_require={
"docs": [
"sphinx",
"sphinx_rtd_theme",
],
},
package_dir={
'django_sendfile': 'django_sendfile',
'django_sendfile.backends': 'django_sendfile/backends',
},
package_data={
'django_sendfile': ['testfile.txt'],
},
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)