forked from django-getpaid/django-plans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.23 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from plans import __version__ as VERSION
with open('README.rst') as file:
long_description = file.read()
setup(
name='django-plans',
version=VERSION,
description='Pluggable django app for managing pricing plans with quotas and accounts expiration',
long_description=long_description,
author='Krzysztof Dorosz',
author_email='[email protected]',
url='https://github.com/cypreess/django-plans',
license='MIT',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'django-countries>=4.5',
'pytz>=2017.2',
'django-ordered-model>=1.4.1',
'vatnumber>=1.2',
'celery',
'suds-jurko',
'six',
],
extras_require={
'i18n': [
'django-modeltranslation>=0.5b1',
],
},
include_package_data=True,
zip_safe=False,
)