forked from studybuffalo/django-flexible-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (55 loc) · 2.13 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
50
51
52
53
54
55
56
57
58
"""PyPI setup script for the django-flexible-subscriptions package."""
from setuptools import find_packages, setup
from subscriptions import __version__
with open('README.rst', 'r') as readme_file:
LONG_DESCRIPTION = readme_file.read()
setup(
name='django-flexible-subscriptions',
version=__version__,
url='https://github.com/studybuffalo/django-flexible-subscriptions',
description=('A subscription and recurrent billing application for Django.'),
long_description=LONG_DESCRIPTION,
long_description_content_type='text/x-rst',
author='Joshua Torrance',
author_email='[email protected]',
keywords='Django, subscriptions, recurrent billing',
platforms=['linux', 'windows'],
packages=find_packages(exclude=['sandbox*', 'tests*']),
package_data={
'subscriptions': [
'management/commands/*.py',
'static/subscriptions/*.css',
'templates/subscriptions/*.html',
'templates/subscriptions/snippets/*.html',
]
},
project_urls={
'Documentation': 'https://django-flexible-subscriptions.readthedocs.io/en/latest/',
'Source code': 'https://github.com/studybuffalo/django-flexible-subscriptions',
'Issues': 'https://github.com/studybuffalo/django-flexible-subscriptions/issues',
},
python_requires='>=3.5',
install_requires=[
'django>=2.2',
],
tests_require=[
'pytest==6.0.1',
'pytest-cov==2.10.1',
],
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Other/Nonlisted Topic'
],
)