forked from ljocha/gc-derivatization
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
42 lines (38 loc) · 1.05 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
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gc-meox-tms"
version = "1.0.1"
authors = [
{name = "Ales Krenek", email = "[email protected]"},
{name = "Maksym Skoryk", email = "[email protected]"},
]
maintainers = [{name = "RECETOX", email = "[email protected]"}]
description = "In-silico MeOX/TMS derivatization of chemical compounds"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
urls = {Homepage = "https://github.com/RECETOX/gc-meox-tms"}
requires-python = ">=3.8"
dependencies = ["rdkit"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.optional-dependencies]
dev = [
"flake8",
"mock",
"pytest",
"pytest-cov",
"pytest-rerunfailures",
]
eda = [
"jupyter",
"py3Dmol",
]
[tool.setuptools]
packages = ["gc_meox_tms"]
include-package-data = false