-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (44 loc) · 1.39 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
#!/usr/bin/env python
from setuptools import setup
import billing_datatrans
setup(
name='django-customer-billing-datatrans',
version=billing_datatrans.__version__,
description='',
long_description='',
author='Nicholas Wolff',
author_email='nwolff@gmail.com',
url=billing_datatrans.__URL__,
download_url='https://pypi.python.org/pypi/django-customer-billing-datatrans',
packages=[
'billing_datatrans',
'billing_datatrans.migrations',
'billing_datatrans.signals'
],
install_requires=[
'Django>=2.0',
'djangorestframework',
'django-money',
'structlog',
'hashids',
'typing',
'django-customer-billing>=1.7.2',
'django-datatrans-gateway',
],
license=billing_datatrans.__licence__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.1',
'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',
],
)