-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
60 lines (54 loc) · 1.16 KB
/
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
52
53
54
55
56
57
58
[metadata]
name = farmsubsidy-store
version = file: VERSION
description = Importer, storage and api for farmsubsidy data
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/okfde/farmsubsidy-store
classifiers =
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
packages = find:
include_package_data = True
install_requires:
banal
cachelib
Click
clickhouse-driver[numpy]
countrynames
dataset
duckdb
fastapi
fingerprints
followthemoney
furl
matplotlib
pandas
passlib[bcrypt]
pycountry
pydantic
pyicu
python-jose[cryptography]
python-multipart
redis
hiredis
shortuuid
structlog
[options.extras_require]
geo =
ftm-geocode
postal
[options.entry_points]
console_scripts =
fscli = farmsubsidy_store.cli:cli
[flake8]
max-line-length = 88
select = C,E,F,W,B,B950
extend-ignore = E203, E501