-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 784 Bytes
/
pyproject.toml
File metadata and controls
29 lines (27 loc) · 784 Bytes
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
[tool.poetry]
name = "PyComChem"
version = "0.4"
description = "Python library for accessing the CommonChemistry.org API"
authors = ["Stuart Chalk <schalk@unf.edu>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/stuchalk/pyComChem"
repository = "https://github.com/stuchalk/pyComChem"
keywords = ["common chemistry", "api", "cas", "registry number"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
packages = [
{ include = "comchem" }
]
[tool.poetry.dependencies]
python = "^3.11"
cairosvg = "^2.5.2"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
flake8 = "^3.8.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"