-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 794 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_namespace_packages
version = {}
with open("labstep/constants/version.py") as fp:
exec(fp.read().strip(), version)
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(name='labstep',
version=version['VERSION'],
description='Python SDK for working with the Labstep API',
long_description=long_description,
url='http://github.com/Labstep/labstepPy',
author='Labstep',
author_email='dev@labstep.com',
license='MIT',
packages=find_namespace_packages(include=['labstep', 'labstep.*']),
install_requires=['requests', 'python-dotenv',
'beautifulsoup4', 'Deprecated', 'pathvalidate', 'pandas', 'Pillow'],
tests_require=["pytest"],
zip_safe=False)