forked from studybuffalo/django-helcim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (60 loc) · 2.1 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
59
60
61
62
63
"""PyPI setup script for the django-helcim package."""
from setuptools import find_packages, setup
from helcim import __version__
with open('README.rst', 'r') as readme_file:
LONG_DESCRIPTION = readme_file.read()
setup(
name='django-helcim',
version=__version__,
url='https://github.com/studybuffalo/django-helcim',
description=('A Django-based integration with the Helcim Commerce API.'),
long_description=LONG_DESCRIPTION,
long_description_content_type='text/x-rst',
author='Joshua Torrance',
author_email='[email protected]',
keywords='Django, Helcim, Oscar, Payment',
platforms=['linux', 'windows'],
packages=find_packages(exclude=['sandbox*', 'tests*']),
package_data={
'helcim': [
'templates/helcim/*.html',
'static/helcim/*.svg',
'static/helcim/*.png',
],
},
project_urls={
'Documentation': 'https://django-helcim.readthedocs.io/en/latest/',
'Source code': 'https://github.com/studybuffalo/django-helcim',
'Issues': 'https://github.com/studybuffalo/django-helcim/issues',
},
python_required='>=3',
install_requires=[
'django>=1.11',
'requests>=2.0',
'xmltodict>=0.11',
],
extras_require={
'oscar': ['django-oscar>=1.6,<2.1']
},
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 :: 1.11',
'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'
],
)