-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.57 KB
/
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
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["hatchling >= 1.13.0"]
build-backend = "hatchling.build"
[project]
name = "gmxpy"
description = "Wrapping GROMACS by Python for me"
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
authors = [
{ name = "Goosang Yu", email = "[email protected]" },
]
keywords = [
"gromacs",
"simulation",
"molecular dynamics",
"analysis",
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Typing :: Typed",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"matplotlib",
"pandas",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/Goosang-Yu/gmxpy"
Repository = "https://github.com/Goosang-Yu/gmxpy"
Source = "https://github.com/Goosang-Yu/gmxpy"
Tracker = "https://github.com/Goosang-Yu/gmxpy/issues"
[tool.hatch.version]
path = "gmxpy/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
]
[tool.hatch.build.targets.wheel]
packages = ["gmxpy"]