-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
23 lines (22 loc) · 1.05 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
import setuptools
from parasut.version import Version
setuptools.setup(name='parasut-python',
version=Version('0.0.56').number,
description='Parasut API Python Wrapper',
long_description=open('README.md').read().strip(),
long_description_content_type="text/markdown",
author='Burak Karahan',
author_email='[email protected]',
url='https://github.com/marlonjd/parasut-python',
packages=setuptools.find_packages(include=['parasut']),
zip_safe=False,
keywords='parasut python api',
install_requires=[
'pytest>=6.2.1', 'pytest-cov>=2.10.1', 'requests_oauthlib>=1.3.0'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6')