forked from gitaarik/adyengo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (32 loc) · 934 Bytes
/
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
from setuptools import setup, find_packages
VERSION = '0.1'
REQUIREMENTS = (
'ipaddress==1.0.4',
'python-dateutil==2.1',
'requests==2.9.1'
)
TEST_REQUIREMENTS = (
)
setup(
name="adyengo",
version=VERSION,
author="Rik",
author_email="[email protected]",
description="Integrate Adyen in Django.",
long_description=open('README.md', 'rt').read(),
url="https://github.com/gitaarik/adyengo",
packages=find_packages(),
include_package_data=True,
install_requires=REQUIREMENTS,
tests_require=TEST_REQUIREMENTS,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3.0',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)