-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 907 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 907 Bytes
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
[build-system]
requires = ["hatchling",]
build-backend = "hatchling.build"
[project]
name = "ContactExtractor"
version = "1.0.0"
dependencies = [
"scipy",
]
authors = [
{ name="Eugene F. Baulin", email="efbaulin@gmail.com" },
]
maintainers = [
{ name="Eugene F. Baulin", email="efbaulin@gmail.com" },
]
description = "Contact Extractor from PDB/mmCIF coordinate files"
readme = "src/ContactExtractor/README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.urls]
Homepage = "https://github.com/febos/ContExt"
Issues = "https://github.com/febos/ContExt/issues"
[project.scripts]
context = "ContactExtractor:Main"
Context = "ContactExtractor:Main"
ContExt = "ContactExtractor:Main"
contExt = "ContactExtractor:Main"
CONTEXT = "ContactExtractor:Main"