-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpyproject.toml
34 lines (30 loc) · 880 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
[tool.poetry]
name = "bls"
version = "0.4.0.dev"
description = "A library to access Bureau of Labor Statistics data"
authors = ["Oliver Sherouse <[email protected]>"]
license = "GPL-2.0-or-later"
readme = "README.md"
repository = "https://github.com/OliverSherouse/bls"
keywords = ["BLS", "labor", "statistics", "economics", "data"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
include=["*.txt", "*.md"]
[tool.poetry.dependencies]
python = "~=3.6"
requests = ">=2.0"
pandas = ">=0.20"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-flake8 = "^1.0"
ipython = "^7.8"
flake8-bugbear = "^20.1.4"
pytest-mypy = "^0.4.2"
mypy = "^0.761"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"