-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.24 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
[project]
name = "compound_target_pairs_dataset"
version = "0.0.1"
description = "Extract a dataset of compound-target pairs from ChEMBL"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Lina Heinzke", email = "heinzke@ebi.ac.uk"},
{name = "Barbara Zdrazil", email = "bzdrazil@ebi.ac.uk"}
]
keywords = ["python",
"chemistry", "cheminformatics", "chemoinformatics",
"dataset", "drug-targets", "drug-target-interactions", "chembl"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.7"
dependencies = [
"chembl-downloader",
"numpy",
"pandas",
"rdkit",
"tqdm",
]
[project.optional-dependencies]
dev = [
"sphinx",
"sphinx-rtd-theme",
]
[project.urls]
Repository = "https://github.com/chembl/compound_target_pairs_dataset"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"