-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.33 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "hypervehicle"
version = "0.7.1"
authors = [
{ name="Kieran Mackle", email="[email protected]" },
]
description = "Parametric geometry generation tool for hypersonic vehicles"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
'numpy-stl >= 3.0.0',
'scipy >= 1.10.0',
'pandas >= 1.5.2',
'art >= 5.8',
'tqdm >= 4.64.1',
'multiprocess >= 0.70.14',
'pymeshfix >= 0.16.2',
]
[project.optional-dependencies]
dev = [
'pytest >= 7.2.1',
'black >= 23.9.1',
'commitizen >= 3.10.0',
'pre-commit >= 3.4.0',
'furo >= 2022.12.7',
'myst_parser >= 0.18.1',
'sphinx_copybutton >= 0.5.1',
'sphinx_inline_tabs >= 2022.1.2b11',
'sphinx-autobuild >= 2021.3.14',
]
[project.urls]
"Homepage" = "https://github.com/kieran-mackle/hypervehicle"
"Bug Tracker" = "https://github.com/kieran-mackle/hypervehicle/issues"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.7.1"
tag_format = "v$version"
version_provider = "pep621"
version_files = [
"pyproject.toml:^version",
]
update_changelog_on_bump = true