-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (59 loc) · 1.69 KB
/
pyproject.toml
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
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "gearpy"
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"matplotlib>=3.5,!=3.9.1",
"numpy>=1.20",
"pandas>=1.2",
"scipy>=1.6,!=1.11.0,!=1.14.0rc1",
]
authors = [
{name = "Andrea Blengino", email = "[email protected]"},
]
maintainers = [
{name = "Andrea Blengino", email = "[email protected]"},
]
description = "Python library for mechanical transmission analysis"
readme = "README.rst"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering"
]
[project.optional-dependencies]
doc = [
"furo==2024.8.6",
"m2r2==0.3.3.post2",
"sphinx==8.1.3",
"sphinx-copybutton==0.5.2",
"docutils==0.20.1"
]
test = [
"coverage==7.6.3",
"hypothesis==6.112.1",
"pytest==8.3.3",
"pytest-cov==5.0.0",
"pytest-xdist==3.6.1",
]
[tool.setuptools.packages.find]
include = ["gearpy", "gearpy.*"]
[tool.setuptools.package-data]
"*" = ["*.csv"]
[project.urls]
Homepage = "https://github.com/AndreaBlengino/gearpy"
Documentation = "https://gearpy.readthedocs.io/en/latest/index.html"
Issues = "https://github.com/AndreaBlengino/gearpy/issues"
Repository = "https://github.com/AndreaBlengino/gearpy"