-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
76 lines (67 loc) · 1.67 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[metadata]
name = MesoSim
author = Jonathan Thielen
author_email = [email protected]
license = Apache-2.0
description = Utilities for meteorological case study simulation
long_description = file: README.md
keywords = meteorology, science, simulation
url = https://github.com/MesoSim/mesosim-common
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: POSIX
Programming Language :: Python
Topic :: Scientific/Engineering
Topic :: Games/Entertainment :: Simulation
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
zip_safe = True
package_dir =
= src
packages = find:
include_package_data = True
python_requires = >=3.7
install_requires =
setuptools
pandas>=1.0.1
pyproj>=1.9.6
setup_requires = setuptools; setuptools_scm
[options.packages.find]
where = src
[options.extras_require]
test = pytest; pytest-cov
[options.package_data]
mesosim = us_cities.csv
[flake8]
max-line-length = 95
ignore=
# whitespace before ':' - doesn't work well with black
E203
E402
# line too long - let black worry about that
E501
# do not assign a lambda expression, use a def
E731
# line break before binary operator
W503
exclude=
build
[isort]
default_section=THIRDPARTY
known_first_party=mesosim
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=95
[doc8]
file-encoding = utf8
max-line-length = 95
[pydocstyle]
match = (?!(test_|setup)).*\.py
match-dir = (?!(build|docs))[^.].*
convention = numpy