-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (63 loc) · 1.67 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
[tool.poetry]
name = "pynanomapper"
version = "2.0.1"
description = "eNanoMapper API client"
authors = [
"Nina Jeliazkova <[email protected]>",
]
maintainers = [
"Luchesar Iliev <[email protected]>",
"Vedrin Jeliazkov <[email protected]>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ideaconsult/pynanomapper"
documentation = "https://github.com/ideaconsult/notebooks-ambit/tree/master/enanomapper"
keywords = [
"ambit",
"cheminformatics",
"enanomapper",
"nanoinformatics",
]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
]
packages = [
{ include = "pynanomapper", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
jproperties = "^2.1.1"
measurement = "^3.2.2"
nexusformat = "^1.0.2"
openpyxl = "^3.1.2"
pandas = "^2.0.3"
pyambit = "^0.0.1"
pyyaml = ">=5.1"
requests = "^2.31.0"
xlsxwriter = "^3.1.9"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ideaconsult/pynanomapper/issues"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
[tool.pytest.ini_options]
pythonpath = ["src"]
minversion = "7.0"
addopts = "-ra -q"
testpaths = [
"tests",
"integration",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"