-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (47 loc) · 1017 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
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = [
"setuptools >= 40.9.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "transport_analysis"
description = "A Python package to compute and analyze transport properties."
license = {file = "LICENSE" }
authors = [
{name = "Xu Hong Chen", email = "[email protected]"},
]
maintainers = [
{name = "Xu Hong Chen", email = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"MDAnalysis>=2.1.0",
"tidynamics>=1.0.0",
]
keywords = [
"molecular simulations",
]
dynamic = [
"version",
]
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-xdist>=2.5",
"pytest-cov>=3.0",
"MDAnalysisTests>=2.0.0",
]
doc = [
"sphinx",
"sphinx_rtd_theme",
]
# [project.urls]
# source = "https://github.com/MDAnalysis/transport-analysis"
# documentation = "https://transport-analysis.readthedocs.io"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"transport_analysis/tests",
]