-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 987 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
from setuptools import setup
import versioneer
#Dependancy lists maintained here and in tox.ini
sp_install_requires = [
'requests==2.31.0',
'pytz==2019.3',
'python-dateutil==2.8.1'
]
sp_tests_require = [
'nose==1.3.7',
'python_Testing_Utilities==0.1.9'
]
all_require = sp_install_requires + sp_tests_require
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='PythonAPIClientBase',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Base classes for APIClients',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/rmetcalf9/PythonAPIClientBase',
author='Robert Metcalf',
author_email='[email protected]',
license='MIT',
packages=['PythonAPIClientBase'],
zip_safe=False,
install_requires=sp_install_requires,
tests_require=sp_tests_require,
include_package_data=True)