forked from Fiverdug/biosiglive
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 757 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import find_packages, setup
setup(
name="biosiglive",
description="Biosignal processing and visualization in real time.",
version='0.1',
author="Aceglia",
author_email="amedeo.ceglia@umontreal.ca",
# url="https://github.com/aceglia/biosiglive",
# url="https://github.com/karlmiko/biosiglive.git",
license="Apache 2.0",
# package_dir={'':'biosiglive'},
package_data={'': ['*.json']},
packages=find_packages(include=['biosiglive', 'biosiglive.*']),
keywords="biosiglive",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)