forked from geopy/geopy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
79 lines (75 loc) · 2.34 KB
/
setup.cfg
File metadata and controls
79 lines (75 loc) · 2.34 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[flake8]
max-complexity = 24
max-line-length = 90
[metadata]
classifier =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering :: GIS
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
description = Python Geocoding Toolbox
keywords = geocode, geocoding, gis, geographical, maps, earth, distance
license = MIT
long_description = file: README.rst
long_description_content_type = text/x-rst
maintainer = Kostya Esmukov
maintainer_email = kostya@esmukov.net
name = geopy
url = https://github.com/geopy/geopy
download_url = https://pypi.org/project/geopy
project_urls =
Documentation = https://geopy.readthedocs.io
Source Code = https://github.com/geopy/geopy
Discussions = https://github.com/geopy/geopy/discussions
Issue Tracker = https://github.com/geopy/geopy/issues
version = attr: geopy.__version__
[options]
install_requires =
geographiclib<3,>=1.52
packages = find:
python_requires = >=3.7
[options.extras_require]
dev =
%(dev-lint)s
%(dev-test)s
%(dev-docs)s
dev-lint =
flake8>=7.3.0
isort>=7.0.0
dev-test =
coverage
pytest-asyncio>=0.17
pytest>=3.10
sphinx<=9.1.0 # `docutils` from sphinx is used in tests
dev-docs =
readme_renderer
sphinx<=9.1.0
sphinx-issues
sphinx_rtd_theme>=3.1.0
aiohttp = aiohttp
requests =
urllib3>=1.24.2
# ^^^ earlier versions would work, but a custom ssl
# context would silently have system certificates be loaded as
# trusted: https://github.com/urllib3/urllib3/pull/1566
requests>=2.16.2
# ^^^ earlier versions would work, but they use an older
# vendored version of urllib3 (see note above)
timezone = pytz
[options.packages.find]
exclude =
test*