-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.19 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
[tool.poetry]
name = "pyseed-examples"
version = "0.1.0"
description = "Example data and Python files for loading data into SEED through py-seed API"
authors = ["Nicholas Long <[email protected]>"]
license = "BSD-4-Clause"
readme = "README.md"
homepage = "https://seed-platform.org"
repository = "https://github.com/seed-platform/tbd"
documentation = "https://seed-platform.org"
keywords = ["SEED Platform", "Building Benchmarking"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
packages = [
{ include = "examples"}
]
[tool.poetry.dependencies]
python = ">=3.9, <3.12"
py-seed = "^0.4.2"
# py-seed = { github = "seed-platform/py-seed", branch = "develop" }
# py-seed = { path = "../py-seed", develop = true}
pandas = "~2.0"
jupyterlab = "~4.0"
usaddress = ">0"
openpyxl = "^3.0.10"
[tool.poetry.dev-dependencies]
autopep8 = "~2.0"
flake8 = "6.0.0"
mypy = "~1.3"
pre-commit = "3.7.0"
pytest = "^7.1.2"
pytest-cov = "^4.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"