-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
54 lines (51 loc) · 1.38 KB
/
setup.cfg
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
52
53
54
[metadata]
name = pfh.glidersim
description = A library for paraglider dynamics modeling and simulation
long_description = file:README.rst
long_description_content_type = text/x-rst
license = MIT
license_file = LICENSE.txt
author = Peter Heatwole
author_email = [email protected]
url = https://github.com/pfheatwole/glidersim
project_urls =
Documentation = https://pfheatwole.github.io/glidersim
Discussions = https://github.com/pfheatwole/glidersim/discussions
Issue Tracker = https://github.com/pfheatwole/glidersim/issues
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Scientific/Engineering :: Physics
Intended Audience :: Science/Research
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
include_package_data = True
package_dir =
=src
packages = find_namespace:
python_requires = >= 3.8
install_requires =
numpy >= 1.20
scipy
numba >= 0.54
matplotlib
[options.packages.find]
where = src
[options.extras_require]
dev =
flake8
flake8-bugbear
flake8-comprehensions
flake8-docstrings
flake8-rst-docstrings
pre-commit
mypy
pytest
Sphinx >= 4.4.0
furo >= 2022.2.14.1
numpydoc
sphinx-autobuild