-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (42 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (42 loc) · 1.11 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
42
43
44
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"
[project]
name = "pyheteromap"
version = "0.1.0"
description = "Subchain and GW-reference analysis for IDR trajectories (PyHeteroMap)."
readme = "README.md"
requires-python = ">=3.9,<3.11"
license = { text = "MIT" }
authors = [{ name = "Your Name" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux"
]
dependencies = [
"numpy==1.26.4",
"pandas==2.2.2",
"scipy==1.13.1",
"matplotlib==3.9.1",
"mdtraj==1.10.0",
"afrc==0.3.4",
"biopython>=1.83"
]
[project.urls]
Homepage = "https://github.com/hshadman/IDP_Global_Local_Conformational_Landscapes"
Issues = "https://github.com/hshadman/IDP_Global_Local_Conformational_Landscapes"
[tool.hatch.build]
include = [
"src/pyheteromap/reference_GW_chainlength_100.csv",
"src/pyheteromap/Tesei_2024_IDR-ome_fasta_sequences.csv"
]
[tool.hatch.build.targets.wheel]
packages = ["src/pyheteromap"]
[tool.hatch.build.targets.sdist]
include = [
"src/pyheteromap",
"README.md",
"LICENSE",
"pyproject.toml",
]