forked from clauswilke/PeptideBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (36 loc) · 1.18 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bio2byte.PeptideBuilder"
dynamic = ["version"]
description = "Create peptide PDB files with specified geometry"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT License"}
authors = [
{name = "Matthew Z. Tien", email = "[email protected]"},
]
maintainers = [
{name = "David Bickel", email = "[email protected]"},
]
dependencies = [
"Biopython"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Intended Audience :: Science/Research",
]
[project.urls]
Homepage = "https://www.bio2byte.be"
Repository = "https://github.com/Bio2Byte/bio2byte-peptidebuilder"
"Source Repository" = "https://github.com/clauswilke/PeptideBuilder"
[tool.setuptools.dynamic]
version = {attr = "bio2byte.PeptideBuilder.__init__.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
namespaces = true