-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 914 Bytes
/
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
[tool.poetry]
name = "pdf2chem"
version = "0.1.6"
description = "A curator for chemistry-related pdf files"
authors = ["johngoeltz <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/johngoeltz/pdf2chem"
keywords = ["chemistry", "curator", "pdf", "SMILES"]
[tool.poetry.dependencies]
python = "^3.7.1"
#pandas = "^1.2.3"
pandas = "1.1.5"
ChemDataExtractor = "^1.3.0"
CIRpy = "^1.0.2"
textract = "^1.6.3"
DateTime = "^4.3"
[tool.poetry.dev-dependencies]
Sphinx = "^3.5.2"
sphinxcontrib-napoleon = "^0.7"
pytest = "^6.2.2"
python-semantic-release = "^7.15.0"
flake8 = "^3.8.4"
pytest-cov = "^2.11.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = "pypkgs/__init__.py:__version__"
version_source = "commit"
upload_to_pypi = "false"
patch_without_tag = "true"