-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (96 loc) · 2.25 KB
/
Copy pathpyproject.toml
File metadata and controls
108 lines (96 loc) · 2.25 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools>=61.0,<81"]
build-backend = "setuptools.build_meta"
[project]
name = "papyrus-bioactivity-linker"
dynamic = ["version"]
description = "A package to link a protein/small molecule activity dataset to HTS data using papyrus"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["cheminformatics", "target identification", "protein", "small molecule"]
authors = [{ name = "David Araripe", email = "david.araripe17@gmail.com" }]
maintainers = [{ name = "David Araripe", email = "david.araripe17@gmail.com" }]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"pandas",
"numpy",
"papyrus-scripts",
"papyrus-structure-pipeline",
"venn",
"matplotlib",
"seaborn",
"tqdm",
"uniprot-id-mapper",
"rdkit",
"scipy",
"chembl-structure-pipeline>=1.2.0",
"chembl-webresource-client>=0.10.8",
"chem-filters @ git+https://github.com/David-Araripe/chemFilters.git@cc4dbc22957ff540880fd13e1ad39aec981004f5",
]
[project.optional-dependencies]
dev = ["tox", "ruff", "isort", "black"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
where = ["src"]
[tool.setuptools.dynamic]
version = { attr = "papyrusBioactivityLinker.__version__" }
[tool.isort]
profile = "black"
[tool.black]
line-length = 110
target-version = ['py38']
required-version = '23.1.0'
exclude = '''
(
asv_bench/env
| \.egg
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)
'''
[tool.ruff]
# Enable the pycodestyle (`E`) and Pyflakes (`F`) rules.
select = ["E", "F", "B", "W"]
ignore = []
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
line-length = 110
# Assume Python 3.9.
target-version = "py39"