latecomers/pyproject.toml

59 lines
944 B
TOML
Raw Normal View History

2022-08-18 18:49:47 +02:00
[project]
name = "latecomers"
2022-09-27 23:16:11 +02:00
version = "0.3.3"
2022-08-18 18:49:47 +02:00
description = "Retrieve and save data from ADR Ciampino airport"
authors = [{name="Leonardo Barcaroli", email="blallo@autistici.org"}]
license = {text="Public Domain"}
requires-python = ">= 3.6"
dependencies = [
"requests",
"lxml",
"pandas",
2022-08-24 12:43:32 +02:00
"openpyxl",
2022-08-25 13:12:22 +02:00
"PyYAML",
2022-08-18 18:49:47 +02:00
]
[tool.setuptools.packages.find]
include = ["latecomers*"]
[project.optional-dependencies]
dev = [
"ipython",
"black",
"build",
2022-08-18 18:49:47 +02:00
]
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"
2022-08-25 13:12:22 +02:00
[project.scripts]
latecomers = "latecomers.main:cli"
2022-08-18 18:49:47 +02:00
[tool.black]
line-length = 88
target_version = ['py36']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)
)
'''