-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (76 loc) · 2.29 KB
/
pyproject.toml
File metadata and controls
85 lines (76 loc) · 2.29 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
85
[project]
name = "roadtraffic"
version = "1.0.0"
description = "A package for road traffic data analysis"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "GNU General Public License v3 (GPLv3)"}
keywords = ["road traffic", "data analysis", "convex regression", "quantile regression"]
authors = [
{name = "Iaroslav Kriuchkov, Timo Kuosmanen", email = "iaroslav.kriuchkov@aalto.fi"}
]
maintainers = [
{name = "Iaroslav Kriuchkov", email = "iaroslav.kriuchkov@aalto.fi"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy >= 1.26",
"pandas >= 2.0",
"tqdm >= 4.66",
"scipy >= 1.11",
"pystoned >= 0.6.6",
"requests >= 2.31",
"urllib3 == 1.26.6",
"pandas-stubs >= 2.1.1"
]
[project.optional-dependencies]
test = [
"flake8>=6.1.0",
"tox>=4.11.0",
"pytest>=7.4.0",
"pytest-cov>=4.0.0",
"mypy>=1.7.0"
]
[project.urls]
repository = "https://github.com/iarokr/roadtraffic"
changelog = "https://github.com/iarokr/roadtraffic/blob/main/CHANGELOG.md"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["roadtraffic", "roadtraffic.*"]
#packages = ["roadtraffic", "roadtraffic.utils", ]
[tool.setuptools.package-data]
"roadtraffic" = ["py.typed"]
[tool.pytest.ini_options]
addopts = ["--cov=roadtraffic", "--import-mode=importlib"]
testpaths = [
"tests",
]
[tool.mypy]
mypy_path = "src"
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
no_implicit_reexport = true