forked from ActivitySim/sharrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
36 lines (34 loc) · 741 Bytes
/
setup.cfg
File metadata and controls
36 lines (34 loc) · 741 Bytes
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
[metadata]
name = sharrow
author = Cambridge Systematics
author_email = jeffnewman@camsys.com
license = BSD-3-Clause
url = https://github.com/ActivitySim/sharrow
description = numba for ActivitySim-style spec files
long_description = file: README.md
long_description_content_type = text/markdown
[options]
packages = find:
zip_safe = False
include_package_data = True
python_requires = >=3.7
install_requires =
numpy >= 1.19
pandas >= 1.2
pyarrow >= 3.0.0
xarray >= 0.20.0
numba >= 0.51.2
sparse
numexpr
filelock
dask
networkx
astunparse;python_version<'3.9'
[flake8]
exclude =
.git,
__pycache__,
docs/_build,
sharrow/__init__.py
max-line-length = 160
extend-ignore = E203, E731