-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
36 lines (31 loc) · 998 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
[metadata]
name = mountain_passes_for_nakarte
version = 0.0.3
[options]
packages = find:
include_package_data = True
install_requires =
shapely
numpy
scipy
odfpy
[options.entry_points]
console_scripts =
westra_tree_to_file_for_debugging = mountain_passes_for_nakarte.scripts.westra_tree_to_file_for_debugging:main
westra_to_nakarte_json = mountain_passes_for_nakarte.scripts.westra_to_nakarte_json:main
gpx_regions_to_geojson = mountain_passes_for_nakarte.scripts.gpx_regions_to_geojson:main
fstr_to_nakarte_json = mountain_passes_for_nakarte.scripts.fstr_to_nakarte_json:main
fstr_save_table = mountain_passes_for_nakarte.scripts.fstr_save_table:main
[options.extras_require]
test =
black
pylint
flake8<6
flake8-import-order
mypy
types-setuptools
types-shapely
pytest
# How to make PyCharm and mypy to work with editable installation:
# export SETUPTOOLS_ENABLE_FEATURES="legacy-editable"
# https://github.com/python/mypy/issues/13392