-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
51 lines (47 loc) · 1.05 KB
/
setup.cfg
File metadata and controls
51 lines (47 loc) · 1.05 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
49
50
51
[metadata]
name = gaitsim_assist
version = 0.1.0
description = A Python library for gait simulations and assistive device design
long_description = file: README.md
long_description_content_type = text/markdown
author = Assistive Device Design Team
author_email = your.email@example.com
license = MIT
license_file = LICENSE
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Medical Science Apps.
[options]
packages = find:
python_requires = >=3.9
install_requires =
numpy>=1.20.0
matplotlib>=3.3.0
pandas>=1.2.0
scipy>=1.6.0
seaborn>=0.11.0
casadi>=3.5.5
[options.extras_require]
dev =
pytest>=6.0.0
black
flake8
sphinx
sphinx_rtd_theme
[options.package_data]
gaitsim_assist =
models/*.osim
data/*.csv
data/*.json
[flake8]
max-line-length = 88
extend-ignore = E203
exclude =
.git,
__pycache__,
build,
dist,
venv