-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (47 loc) · 1.92 KB
/
setup.py
File metadata and controls
48 lines (47 loc) · 1.92 KB
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
from setuptools import setup, find_packages
setup(
name="msna-sim",
version="0.1.2",
description="A library for generating synthetic Muscle Sympathetic Nerve Activity (MSNA) data with realistic and physiologically accurate characteristics.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Ryan 'RyanIRL' Peters",
author_email="[email protected]",
url="https://github.com/ryanirl/msna-sim",
packages=find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires=">=3.8",
install_requires=[
"numpy>=1.19.0",
"pandas>=1.3.0",
"bokeh>=2.4.0",
"tornado>=6.0",
],
entry_points={
"console_scripts": [
"msna-sim-dashboard=msna_sim.dashboard:main_cli"
],
},
keywords="msna, nerve activity, signal simulation, synthetic data, microneurography, cardiovascular, autonomic nervous system",
project_urls={
"Bug Reports": "https://github.com/ryanirl/msna-sim/issues",
"Source": "https://github.com/ryanirl/msna-sim",
"Documentation": "https://github.com/ryanirl/msna-sim/blob/main/SPECS.md",
},
)