-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (27 loc) · 1018 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
import os
from setuptools import setup
from setuptools import find_packages
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(BASE_DIR, 'README.md')).read()
CHANGES = open(os.path.join(BASE_DIR, 'CHANGES.rst')).read()
setup(name='jdpay',
version='1.1.6',
description='This is an unofficial python JingDong pay API.',
long_description=README + '\n\n' + CHANGES,
author='Haotong Chen',
author_email='[email protected]',
url='https://github.com/hereischen/jdpay',
license='BSD License',
packages=find_packages('src'),
package_dir={'': 'src'},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
],
include_package_data=True,
zip_safe=False,
# test_suite='jdpay.tests'
)