53 lines
847 B
TOML
53 lines
847 B
TOML
|
[project]
|
||
|
name = "latecomers"
|
||
|
version = "0.1.0"
|
||
|
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",
|
||
|
]
|
||
|
|
||
|
[tool.setuptools.packages.find]
|
||
|
include = ["latecomers*"]
|
||
|
|
||
|
|
||
|
[project.optional-dependencies]
|
||
|
|
||
|
dev = [
|
||
|
"ipython",
|
||
|
"black",
|
||
|
]
|
||
|
|
||
|
[build-system]
|
||
|
requires = [
|
||
|
"setuptools",
|
||
|
]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
|
||
|
[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
|
||
|
)
|
||
|
)
|
||
|
'''
|