-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.04 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
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',
'PythonAPIClientBase==0.0.15',
'InquirerPy==0.3.4'
]
sp_tests_require = [
'pytest==7.1.2',
'python_Testing_Utilities==0.1.10'
]
all_require = sp_install_requires + sp_tests_require
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='BiginPythonClient',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Python package which provides Bigin Rest API Client',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/rmetcalf9/BiginPythonClient',
author='Robert Metcalf',
author_email='[email protected]',
license='MIT',
packages=['BiginPythonClient'],
zip_safe=False,
install_requires=sp_install_requires,
tests_require=sp_tests_require,
include_package_data=True)