-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.26 KB
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
# Pip Build Setup --------------------------------------------------------------
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
# Pip Package Metadata ---------------------------------------------------------
[project]
name = "structuredca"
version = "1.0.1"
description = "Structure-Informed Direct Couplings Analysis."
readme = "README.md"
authors = [
{ name = "Matsvei Tsishyn", email = "matsvei.tsishyn@protonmail.com" },
{ name = "Hugo Talibart", email = "hugo.talibart@protonmail.com" }
]
requires-python = ">=3.9"
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"numpy",
"biopython>=1.75",
"littlecsv",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"Programming Language :: C",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
urls = { Homepage = "https://github.com/3BioCompBio/StructureDCA" }
# Entry Points for CLI ---------------------------------------------------------
[project.scripts]
structuredca = "structuredca.cli:main"
# Setup pip Package ------------------------------------------------------------
# this finds all the python packages recursively
[tool.setuptools]
packages = { find = {} }