-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (49 loc) · 1.38 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
[tool.poetry]
name = "obplatform"
version = "1.1.0"
description = "APIs to access ASHRAE OB Database"
authors = ["Wei Mu <[email protected]>"]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = ">=3.7.1,<4.0"
requests = "^2.26.0"
tqdm = "^4.62.3"
pandas = {version = "^1.3.4", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
flake8 = "^4.0.1"
black = "^21.10b0"
isort = "^5.10.1"
mypy = "^0.910"
Sphinx = "^4.3.0"
sphinx-rtd-theme = "^1.0.0"
types-requests = "^2.26.0"
responses = "^0.16.0"
pytest-cov = "^3.0.0"
tox = "^3.24.4"
pytest-mock = "^3.6.1"
darglint = "^1.8.1"
tbump = "^6.6.0"
sphinx-autodoc-typehints = "^1.12.0"
sphinxcontrib-napoleon = "^0.7"
rstcheck = "^3.3.1"
flake8-bugbear = "^21.9.2"
pre-commit = "^2.15.0"
[tool.poetry.extras]
pandas = ["pandas"]
[tool.poetry.urls]
homepage = "https://ashraeobdatabase.com"
repository = "https://github.com/umonaca/obplatform"
"Bug Tracker" = "https://github.com/umonaca/obplatform/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"