-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
39 lines (34 loc) · 877 Bytes
/
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
[build-system]
#requires = ['setuptools>=38.3.0']
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "megpy"
version = "1.3.2"
description = "MEGPy"
readme = "README.md"
requires-python = ">=3"
license = { file = "LICENSE" }
keywords = ["fusion", "simulation", "toolkit", "equilibrium"]
authors = [
{ name = "Garud Snoep", email = "gsnoep42@gmail.com" },
{ name = "Aaron Ho", email = "aaronkho@mit.edu" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"pandas",
"xarray",
"scipy",
]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
"Homepage" = "https://github.com/gsnoep/megpy"
"Bug Reports" = "https://github.com/gsnoep/megpy/issues"
"Source" = "https://github.com/gsnoep/megpy"
[project.scripts]
megpy = "megpy.cli:parse"