-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
50 lines (46 loc) · 1.45 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
[build-system]
requires = ["setuptools", "numpy>=1.2", "cython>=3.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pdb-numpy"
version = "0.0.11"
dynamic = ["readme", "dependencies"]
description = "Pdb_Numpy is a python library allowing simple operations on pdb coor files."
license = {file = "LICENSE"}
requires-python = ">=3.6"
authors = [
{ name = "Samuel Murail", email = "[email protected]" },
]
keywords = [
"Coor",
"Model",
"Numpy",
"PDB",
"Python",
"pdb_numpy",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
]
[project.scripts]
pdb_numpy = "pdb_numpy.__main__:main"
[project.urls]
Homepage = "https://pdb-numpy.readthedocs.io/en/latest/"
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}
dependencies = {file = ["requirements.txt"]}