-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (35 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
45 lines (35 loc) · 1.13 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
[tool.poetry]
name = "openad_plugin_ds"
version = "0.0.1"
description = "Deep Search functionality for OpenAD"
keywords= ["deep", "search", "openad", "ibm", "research", "molecule", "chemistry", "patent", "substructure"]
authors = [
"Moenen Erbuer <moenen.erbuer@ibm.com>",
]
maintainers = [
"Moenen Erbuer <moenen.erbuer@ibm.com>",
"Phil Downey <phil.downey1@ibm.com>"
]
homepage = "https://ds4sd.github.io/"
documentation = "https://github.com/DS4SD/deepsearch-toolkit"
repository = "https://github.com/DS4SD"
readme = "README.md"
license = "MIT"
classifiers = [
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Typing :: Typed",
"Programming Language :: Python :: 3.11"
]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
deepsearch-toolkit = "^2.0.1"
openad_tools = { git = "https://git@github.com/acceleratedscience/openad-tools", tag = "v0.0.3" }
########## Do not below this line ##########
[tool.black]
line-length=120
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"