-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
46 lines (41 loc) · 965 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
[metadata]
name = ftm-geocode
version = file: VERSION
description = Bath parse and geocode addresses from followthemoney entities
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
author = Simon Wörpel
author_email = [email protected]
url = https://github.com/simonwoerpel/ftm-geocode
classifiers =
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.10
[options]
packages = find:
install_requires:
addressformatting>=1.3.1
dataset
fingerprints
followthemoney>=3.2.1
geopandas
geopy
lazy_import
pydantic
pycountry
pyicu
sqlalchemy<2.0
structlog
typer
[options.extras_require]
postal =
postal
[options.entry_points]
console_scripts =
ftmgeo = ftm_geocode.cli:cli
[flake8]
max-line-length = 88
select = C,E,F,W,B,B950
extend-ignore = E203, E501