-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (54 loc) · 1.25 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "aerocaps"
authors = [
{name = "Matthew G Lauer", email = "[email protected]"}
]
description = "Toolkit for design of Class-A, parametric design of aerodynamic surfaces"
readme = "README.md"
requires-python = ">=3.10"
keywords = [
"aerodynamics",
"MDAO",
"MDO",
"parametric",
"airfoil system",
"surface modeling",
"surface design",
"NURBS",
"B-Spline"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"scipy",
"numpy",
"matplotlib",
"pyvista",
"pyiges",
"shapely"
]
dynamic = ["version"]
[tool.setuptools]
packages = [
"aerocaps",
"aerocaps.examples",
"aerocaps.geom",
"aerocaps.iges",
"aerocaps.scripts",
"aerocaps.stl",
"aerocaps.tests",
"aerocaps.units",
"aerocaps.utils"
]
[tool.setuptools.dynamic]
version = {attr = "aerocaps.version.__version__"}