-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (73 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
84 lines (73 loc) · 2.04 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pybikes"
description = "A python library for scraping bike sharing data"
readme = "README.md"
requires-python = ">=3.9"
license = "AGPL-3.0"
license-files = ["LICENSE.txt"]
authors = [
{ name = "Lluis Esquerda", email = "eskerda@gmail.com" },
]
keywords = [
"transport",
"open data",
"bike share",
"bike sharing",
]
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
'requests',
'lxml',
'shapely>=1.5.13',
"importlib_resources; python_version < '3.9'",
'cssselect',
]
dynamic = ["version"]
[project.urls]
Homepage = "https://www.citybik.es"
Documentation = "https://docs.citybik.es"
Source = "https://github.com/eskerda/pybikes"
Tracker = "https://github.com/eskerda/pybikes/issues"
[project.optional-dependencies]
test = [
# tests
"pytest",
"pytest-xdist",
"gitpython",
# lint
"flake8",
# reports:
"jinja2",
# pin pytest-metadata until https://github.com/numirias/pytest-json-report/issues/89
"pytest-metadata==2.0.4",
"pytest-json-report",
"python-slugify",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["pybikes*"]
exclude = ["tests*"]
[tool.setuptools.package-data]
pybikes = ["data/*.json", "data/*.geojson"]
[tool.setuptools_scm]
# can be empty if no extra settings are needed, presence enables setuptools-scm
# version_scheme = "only-version"
local_scheme = "no-local-version"