-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
104 lines (89 loc) · 2.55 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# pyproject.toml
[project]
name = "harold"
license = {file = "LICENSE.txt"}
description = "An open-source systems and controls toolbox for Python3."
maintainers = [
{name = "Ilhan Polat", email = "harold.of.python@gmail.com"},
]
requires-python = ">=3.8"
dependencies = [
"scipy>=1.8.0",
"matplotlib",
"tabulate"
]
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"flake8"
]
doc = [
"sphinx",
"cloud_sptheme",
"numpydoc",
]
[project.urls]
homepage = "https://github.com/ilayn/harold"
documentation = "https://harold.readthedocs.org"
source = "https://github.com/ilayn/harold"
download = "https://github.com/ilayn/harold/releases"
tracker = "https://github.com/ilayn/harold/issues"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"harold/tests"
]
[tool.poetry]
name = "harold"
version = "1.0.3"
description = "An open-source systems and controls toolbox for Python3."
authors = ["Ilhan Polat <ilhanpolat@gmail.com>"]
license = "MIT"
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
]
[tool.poetry.dependencies]
python = "^3.8"
scipy = "^1.8.0"
matplotlib = "^3.4.0"
tabulate = "^0.8.9"
[tool.poetry.dev-dependencies]
pytest = "^6.0.0"
flake8 = "^4.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"