2022-08-18 18:49:47 +02:00
|
|
|
[project]
|
|
|
|
name = "latecomers"
|
2022-09-20 22:30:18 +02:00
|
|
|
version = "0.3.1"
|
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",
|
2022-09-07 23:50:28 +02:00
|
|
|
"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
|
|
|
|
)
|
|
|
|
)
|
|
|
|
'''
|