-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
50 lines (42 loc) · 1.33 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
"""
BITalino (R)evolution Python API
Setup for package installation.
"""
import sys
from setuptools import setup
if sys.version_info[:2] < (3, 7):
raise RuntimeError("Python version >= 3.7 required.")
def readme():
with open("README.md", "r") as f:
description = f.read()
return description
setup(
name="bitalino",
version="1.2.6",
author="BITalinoWorld",
author_email="[email protected]",
url="http://www.bitalino.com/",
py_modules=["bitalino"],
description="revolution-python-api",
long_description=readme(),
download_url="https://github.com/BITalinoWorld/revolution-python-api",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
],
license="GNU GPL v3",
keywords="BITalino, Physiological Computing, Biosignal, Physiological Signal",
python_requires=">=3.7",
install_requires=[
"numpy>1.19",
"pyserial==3.5",
"PyBluez-bitalino==0.30",
],
zip_safe=False,
)