forked from GamesDoneQuick/donation-tracker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·45 lines (44 loc) · 1.54 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-sda_donation_tracker',
version='2.2',
author='Games Done Quick',
author_email='[email protected]',
packages=['sda_donation_tracker'],
url='https://github.com/uraniumanchor/sda-donation-tracker-2',
license='GPLv2',
description='A Django app to assist in tracking donations for live broadcast events.',
long_description=open('README.rst').read(),
zip_safe=False,
include_package_data=True,
package_data={'': ['README.rst']},
install_requires=[
'chromium-compact-language-detector',
'Django>=2.0',
'django-post-office',
'django-ajax-selects',
'django-mptt',
'gdata',
'oauth2client',
'psycopg2',
'python-dateutil',
'pytz',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)