forked from django-getpaid/django-plans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open('README.rst') as file:
long_description = file.read()
setup(
name='django-plans',
version='0.7alpha',
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 :: 2.7',
'Programming Language :: Python :: 3.3',
],
install_requires=[
'django-countries>=2.0',
'pytz>=2013.9',
'django-ordered-model>=0.3.0',
'vatnumber>=1.1',
'celery',
'suds-jurko',
],
extras_require={
'i18n': [
'django-modeltranslation>=0.5b1',
],
},
include_package_data=True,
zip_safe=False,
)