-
Notifications
You must be signed in to change notification settings - Fork 128
/
setup.py
48 lines (44 loc) · 1.3 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
#!/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",
"python-stdnum",
"django-next-url-mixin>=0.1.0",
"suds",
"django-sequences",
"swapper~=1.3.0",
"six",
],
extras_require={
"i18n": [
"django-modeltranslation>=0.5b1",
],
},
include_package_data=True,
zip_safe=False,
)