-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
51 lines (46 loc) · 883 Bytes
/
setup.cfg
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
[metadata]
name = crash_prediction
version = 1.2.0
description = Explore car crash prediction using NZTA Crash Analysis System data
author = Maxime RIO
author_email = maxime.rio@niwa.co.nz
[options]
packages = find:
package_dir =
=src
install_requires =
requests
pandas
matplotlib
seaborn
contextily
defopt
scikit-learn
dask[complete]
dask-jobqueue
dask-ml
lightgbm
geoviews
cartopy
pyproj
datashader
hvplot
[options.packages.find]
include =
src
[options.entry_points]
console_scripts =
cas_data = crash_prediction.cas_data:main
models = crash_prediction.models:main
evaluate = crash_prediction.evaluate:main
visualize = crash_prediction.visualize:main
[options.extras_require]
dev =
black
flake8
ipykernel
jupytext
nbconvert
snakemake
[flake8]
max-line-length = 88