-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (36 loc) · 880 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[project]
name = "mdcraft"
version = "1.3.2"
authors = [
{ name = "Benjamin B. Ye", email = "bye@caltech.edu" },
{ name = "Pierre J. Walker", email = "pjwalker@caltech.edu" }
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
dependencies = [
"matplotlib",
"mdanalysis",
"netCDF4",
"numba",
"numpy",
"pandas",
"pint",
"psutil",
"scipy",
"sympy"
]
description = ""
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9"
[project.urls]
"Homepage" = "https://github.com/bbye98/mdcraft"
"Bug Tracker" = "https://github.com/bbye98/mdcraft/issues"