-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
56 lines (48 loc) · 1.05 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
45
46
47
48
49
50
51
52
53
54
55
56
[build-system]
requires = [
"hatchling>=1.3.1",
]
build-backend = "hatchling.build"
[project]
name = "bioplexpy"
version = "1.1.1"
description = "Python-side access to PPI data from Gygi lab"
readme = "README.md"
license = { file="LICENSE" }
authors = [
{ name = "Roger Vargas", email = "roger_vargas@g.harvard.edu" },
{ name = "Ludwig Geistlinger", email = "ludwig_geistlinger@hms.harvard.edu" },
{ name = "Tyrone Lee", email = "tyrone_lee@hms.harvard.edu" },
]
dependencies = [
"anndata",
"biopython",
"matplotlib",
"networkx",
"numpy",
"pandas",
"pypdb",
"requests",
"scipy",
]
[project.optional-dependencies]
devel = [
"ruff",
]
[tool.hatch.version]
path = "bioplexpy/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs",
]
include = [
"/bioplexpy",
]
[tool.hatch.build.targets.wheel]
packages = ["bioplexpy"]
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I"] # Errors, Pyflakes, Imports
ignore = ["E501"] # Example: ignore line length