-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
39 lines (34 loc) · 1005 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "fletcher_maximus"
dynamic=["version"]
description = "A package for quickly spotting molecular geometric features in protein structural files."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
]
authors = [
{ name = "Jon Agirre", email = "[email protected]" },
{ name = "Federico Sabbadin", email = "[email protected]" }
]
maintainers = [
{ name = "Jon Agirre", email = "[email protected]" },
]
dependencies = [
"gemmi>=0.6.6"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
version_file = "src/fletcher/_version.py"
[project.urls]
Homepage = "https://github.com/glycojones/fletcher"
Issues = "https://github.com/glycojones/fletcher/issues"
[tool.pytest.ini_options]
markers = [
]