-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 750 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 750 Bytes
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
# pyproject.toml
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "macro"
version = "1.0.0"
description = "Megastructure Assembly via Collaborative Robots in Orbits (MACRO)"
authors = [{ name = "Aaron John Sabu", email = "aaronjs@g.ucla.edu" }
, { name = "Dwaipayan Mukherjee", email = "dm@ee.iitb.ac.in" }]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"black",
"numpy",
"scipy",
"plotly",
"pyyaml",
"networkx",
"matplotlib",
]
[project.optional-dependencies]
dev = [
"pytest",
"ipython",
"mypy",
"ruff"
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["macro*"]