-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
30 lines (29 loc) · 931 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
from setuptools import find_packages, setup
setup(
name="seerpy",
version="0.6.6",
description="Seer Platform SDK for Python",
long_description=open("README.md").read(),
url="https://github.com/seermedical/seer-py",
author="Brendan Doyle",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: PyPy",
],
keywords="api seer eeg ecg client",
packages=find_packages(include=["seerpy*"]),
install_requires=[
"gql[requests]>=3",
"numpy<2.0.0",
"pandas<2.0.0",
"pyjwt[crypto]",
"urllib3<1.27.0",
],
extras_require={"viz": ["matplotlib"]},
tests_require=["pytest"],
)