aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 34e4e1106f7390f3b9c695e40f265b0091efb2b4 (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
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
55
56
57
58
59
60
61
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project.scripts]
datamaps = 'datamaps.main:cli'

[project]
name = "datamaps"
version = "1.1.9"
authors = [
    { name="Matthew Lemon", email="matt@matthewlemon.com" },
]
description='Collect and clean data using Excel spreadsheets.'
dependencies = [
    'click',
    'python-dateutil',
    'bcompiler-engine>=1.1.5'
]
readme = "README.md"
requires-python = ">=3.7"
classifiers=[
    "Environment :: Console",
    "Intended Audience :: Other Audience",
    "Programming Language :: Python :: 3.7",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Topic :: Text Processing",
]

[project_urls]
"Homepage" = 'https://github.com/yulqen/datamaps'

[tool.poetry]
name = "datamaps"
version = "1.1.7"
homepage = "https://github.com/yulqen/datamaps"
repository = "https://github.com/yulqen/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.1.5"

[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
pytest-cov = "^2.7.1"
coverage = "^5.1"
nox = "^2019.11.9"
pyinstaller = "^4.2"
wheel = "^0.34.2"
pefile = "^2019.4.18"
pywin32-ctypes = "^0.2.0"

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