forked from GamesDoneQuick/donation-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
85 lines (71 loc) · 2.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages, Command
import subprocess
class PackageCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
subprocess.check_call(['git', 'clean', '-fxd', 'tracker'])
subprocess.check_call(['yarn', '--production'])
subprocess.check_call(['yarn', 'build'])
self.run_command('sdist')
self.run_command('bdist_wheel')
package_data = []
old_dir = os.getcwd()
os.chdir('tracker')
for path in ['templates', 'static', 'locale', 'fixtures']:
for root, dirs, files in os.walk(path):
for f in files:
package_data.append(os.path.join(root, f))
os.chdir(old_dir)
setup(
name='django-donation-tracker',
version='3.0',
author='Games Done Quick',
author_email='tracker@gamesdonequick.com',
packages=find_packages(include=['tracker', 'tracker.*']),
url='https://github.com/GamesDoneQuick/donation-tracker',
license='Apache2',
description='A Django app to assist in tracking donations for live broadcast events.',
long_description=open('README.md').read(),
zip_safe=False,
package_data={
'': ['README.md'],
'tracker': package_data + ['ui-tracker.manifest.json',],
},
cmdclass={'package': PackageCommand,},
install_requires=[
'celery~=5.0',
'channels>=2.0',
'Django~=2.2',
'django-ajax-selects~=1.9',
'django-ical~=1.7',
'django-mptt~=0.10',
'django-paypal~=1.0.0',
'django-post-office~=3.2',
'django-timezone-field>=3.1,<5.0',
'djangorestframework~=3.9',
'python-dateutil~=2.8.1',
'pytz>=2019.3',
'webpack-manifest~=2.1',
],
python_requires='>=3.6, <3.8',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: Apache Software License 2.0 (Apache-2.0)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)