-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
62 lines (56 loc) · 1.46 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
59
60
61
62
[metadata]
name = pygc
description = "Great Circle calculations in Python using Vincenty's formulae"
author = Kyle Wilcox
author_email = [email protected]
url = https://github.com/axiom-data-science/pygc
long_description_content_type = text/markdown
long_description = file: README.md
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
[options]
zip_safe = True
include_package_data = True
install_requires =
numpy
pyproj
python_requires = >=3.6
packages = find:
[sdist]
formats = gztar
[check-manifest]
ignore =
*.yml
[tool:pytest]
addopts = -s -rxs -v
flake8-max-line-length = 100
flake8-ignore =
*.py E265 E501 E221 E203 E201 E124 E202 E241 E251 W293 W291 W504
[flake8]
max-line-length = 100
per-file-ignores =
*.py: E265 E501 E221 E203 E201 E124 E202 E241 E251 W293 W291 W504
[tool:isort]
line_length=100
indent=' '
balanced_wrapping=1
multi_line_output=3
default_section=FIRSTPARTY
use_parentheses=1
reverse_relative=1
length_sort=1
combine_star=1
order_by_type=0