-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (49 loc) · 1.42 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
62
[project]
name = "just-psf"
dynamic = ["version"]
description = "Just get me a topology, for god’s sake!"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Pierre Beaujean", email = "[email protected]" }
]
maintainers = [
{name = "Pierre Beaujean", email = "[email protected]" }
]
classifiers = [
# For a list of valid classifiers, see https://pypi.org/classifiers/
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"numpy",
"scipy",
"networkx"
]
[project.optional-dependencies]
dev = [
"flake8",
"flake8-quotes",
"autopep8",
"bump2version",
"pytest"
]
[project.urls]
"Homepage" = "https://github.com/pierre-24/just-psf"
"Bug Reports" = "https://github.com/pierre-24/just-psf/issues"
"Source" = "https://github.com/pierre-24/just-psf/"
[project.scripts]
'just-pdb' = 'just_psf.scripts.just_pdb:main'
'just-psf' = 'just_psf.scripts.just_psf:main'
'just-rtf' = 'just_psf.scripts.just_rtf:main'
[tool.setuptools]
packages = ['just_psf', 'just_psf.scripts', 'just_psf.parsers']
[tool.setuptools.dynamic]
version = {attr = "just_psf.__version__"}
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]