-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 1.23 KB
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>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pore2chip"
version = "0.2.0"
authors = [
{ name="Aramy Truong", email="aramy.truong@pnnl.gov" },
{ name="Maruti Mudunuru", email="maruti@pnnl.gov" },
{ name="Erin Rooney", email="erin.rooney@usda.gov" },
{ name="Arunima Bhattacharjee", email="arunimab@pnnl.gov" },
{ name="Tamas Varga", email="tamas.varga@pnnl.gov" },
{ name="Lal Mamud", email="lal.mamud@pnnl.gov" },
{ name="Xiaoliang (Bryan) He", email="xiaoliang.he@pnnl.gov" },
{ name="Anil Krishna Battu", email="anilkrishna.battu@gmail.com" },
{ name="Satish Karra", email="karra@pnnl.gov" },
]
description = "A package that takes 3D images of porous materials and generates representative micromodels"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.optional-dependencies]
extras = [
"pypardiso",
]
[project.urls]
Homepage = "https://www.emsl.pnnl.gov/science/instruments-resources/terraforms-pore2chip"
Source = "https://github.com/EMSL-Computing/Pore2Chip"