-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
129 lines (115 loc) · 2.6 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chem-filters"
dynamic = ["version"]
description = "A Python package wrapping several chemical structure filtering, rendering and standardization utilities."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
license = { file = "LICENSE" }
keywords = ["chemical structure", "filtering", "cheminformatics", "pains"]
authors = [{ name = "David Araripe", email = "david.araripe17@gmail.com" }]
maintainers = [{ name = "David Araripe", email = "david.araripe17@gmail.com" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Chemistry",
]
dependencies = [
"tqdm",
"numpy",
"pandas",
"rdkit >= 2023.03.1",
"pepsift",
"chembl_structure_pipeline >= 1.2.0",
"molspotter",
"molbloom",
"loguru",
"matplotlib",
]
[project.optional-dependencies]
full = [
"smallworld-api",
"papyrus_structure_pipeline",
"molvs",
]
dev = [
"pytest",
"ruff",
"isort",
"black",
"smallworld-api",
"papyrus_structure_pipeline",
"molvs",
]
[project.scripts]
chemfilters = "chemFilters.cli:main"
[project.urls]
homepage = "https://github.com/David-Araripe/chemFilters"
repository = "https://github.com/David-Araripe/chemFilters"
# documentation = "https://readthedocs.org" TODO
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "chemFilters.__version__" }
[tool.setuptools_scm]
write_to = "src/chemFilters/_version.py"
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
target-version = ['py39']
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",
]
# Same as Black.
line-length = 88
# Assume Python 3.9.
target-version = "py39"