-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
51 lines (47 loc) · 1 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "optiland"
version = "0.1.7"
authors = [
{ name="Kramer Harrison", email="[email protected]" },
]
description = ""
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"pandas",
"pyyaml",
"matplotlib",
"vtk",
"tabulate",
"numba",
"requests",
"seaborn"
]
license = { text = "MIT License" }
[project.urls]
"Homepage" = "https://github.com/HarrisonKramer/optiland"
[tool.setuptools]
packages = [
"optiland",
"database",
"optiland.analysis",
"optiland.geometries",
"optiland.materials",
"optiland.optimization",
"optiland.rays",
"optiland.samples",
"optiland.surfaces",
"optiland.tolerancing",
"optiland.visualization"
]
[tool.setuptools.package-data]
"database" = ["*.csv", "*.yml", "**/*.yml"]