59 lines
944 B
TOML
59 lines
944 B
TOML
[project]
|
|
name = "latecomers"
|
|
version = "0.3.2"
|
|
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",
|
|
"openpyxl",
|
|
"PyYAML",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["latecomers*"]
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = [
|
|
"ipython",
|
|
"black",
|
|
"build",
|
|
]
|
|
|
|
[build-system]
|
|
requires = [
|
|
"setuptools",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project.scripts]
|
|
latecomers = "latecomers.main:cli"
|
|
|
|
[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
|
|
)
|
|
)
|
|
'''
|