forked from scikit-mobility/scikit-mobility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
106 lines (96 loc) · 2.45 KB
/
pyproject.toml
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[build-system]
requires = ["setuptools>=54.1.2", "poetry_core>=1.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "scikit-mobility"
description = "A toolbox for analyzing and processing mobility data."
version = "1.3.0"
packages = [ { include = "skmob"}]
authors = ["skmob Developers"]
maintainers = ["Gianni Barlacchi <[email protected]>"]
documentation= "https://scikit-mobility.github.io/scikit-mobility"
license='new BSD'
readme='README.md'
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
[tool.poetry.dependencies]
python = ">=3.8.0, <4"
pandas = "^1.1.5"
python-igraph = "^0.9.1"
powerlaw = "^1.4.6"
tqdm = "^4.60.0"
requests = "^2.25.1"
scikit-learn = "*"
folium = "0.12.1.post1"
geojson = "^2.5.0"
h3 = "^3.7.3"
pooch = "^1.6.0"
statsmodels = "^0.13.0"
geopandas = "^0.10.2"
jupyter = "^1.0.0"
ipykernel = "^6.20.2"
[tool.poetry.group.dev.dependencies]
tox = "^3.23.1"
pytest = "^6.2.4"
coverage = "^5.5"
pre-commit = "^2.12.1"
poetry = "^1.1.6"
Rtree = "^0.9.7"
coverage-badge = "^1.0.1"
black = "^22.12.0"
ruff = "^0.0.226"
sphinx = "<6.0.0"
sphinx-copybutton = "^0.5.1"
sphinx-rtd-theme = "^1.1.1"
[tool.ruff]
line-length = 88
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
multi_line_output = 3
include_trailing_comma = "True"
force_grid_wrap = 0
use_parentheses = "True"
ensure_newline_before_comments = "True"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38, py39
isolated_build = True
[gh-actions]
python =
3.8: py38
3.9: py39
[testenv]
allowlist_externals = poetry
commands =
poetry install -v
poetry run coverage run -m pytest --verbose skmob
poetry run coverage html -d coverage --omit='.tox/*,**/tests/*,**/.virtualenvs/*'
"""