-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.72 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
52
53
54
55
56
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tdcpy"
dynamic = [
"version",
"dependencies",
"optional-dependencies",
]
requires-python = ">= 3.10"
description = "Time Delay Systems Control Package"
authors = [
{name = "Adam Peichl", email = "adpeichl@gmail.com"},
{name = "Adrian Saldanha", email = "saldanha.adrian@gmail.com"},
]
maintainers = [
{name ="Adam Peichl", email = "adpeichl@gmail.com"},
{name = "Adrian Saldanha", email = "saldanha.adrian@gmail.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Typing :: Typed"
]
readme = {file = "README.md", content-type = "text/markdown"}
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
keywords = ["timedelay", "control", "stability", "DDE", "DDAE"]
[tool.setuptools.packages.find]
where = ["./src"]
include = ["tdcpy*"]
[tool.setuptools.dynamic]
version = {attr = "tdcpy.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.dynamic.optional-dependencies]
docs = {file = ["docs/requirements.txt"]}
[project.urls]
Homepage = "https://github.com/lockeerasmus/tdcpy"
Documentation = "https://lockeerasmus.github.io/tdcpy"
Repository = "https://github.com/lockeerasmus/tdcpy"
Issues = "https://github.com/lockeerasmus/tdcpy/issues"
Changelog = "https://github.com/lockeerasmus/tdcpy/releases"