-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
49 lines (47 loc) · 1.35 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
#!/usr/bin/env python
from setuptools import setup
import billing
setup(
name='django-customer-billing',
version=billing.__version__,
description='',
long_description='',
author='Nicholas Wolff',
author_email='nwolff@gmail.com',
url=billing.__URL__,
download_url='https://pypi.python.org/pypi/django-customer-billing',
packages=[
'billing',
'billing.actions',
'billing.migrations',
'billing.management.commands',
'billing.signals',
],
package_data={'billing': [
'templates/admin/billing/*.html',
]},
install_requires=[
'Django>=2.2',
'django-money',
'django-fsm',
'djangorestframework',
'django-import-export',
'structlog',
'typing',
'progressbar2',
],
license=billing.__licence__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)