aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 17cefc277f4fcae5a92381081087435103b307d8 (plain)
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
[build-system]
requires = ["setuptools", "wheel"]

[tool.poetry]
name = "datamaps"
version = "1.0.5"
homepage = "https://github.com/hammerheadlemon/datamaps"
repository = "https://github.com/hammerheadlemon/datamaps"
license = "MIT"
readme = "README.md"
description = "Collect and clean data using Excel spreadsheets."
authors = ["Matthew Lemon <matt@matthewlemon.com>"]

[tool.poetry.dependencies]
python = "^3.7.0"
python-dateutil = "^2.8.1"
click = "^7.1.2"
bcompiler-engine = "^1.0.5"

[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
pytest-cov = "^2.7.1"
coverage = "^5.1"
nox = "^2019.11.9"
pyinstaller = "^3.6"
wheel = "^0.34.2"

[tools.black]
max-length-length=88