-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
106 lines (91 loc) · 2.07 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[sdist]
formats = gztar
[check-manifest]
ignore =
*.yml
*.yaml
.coveragerc
docs
docs/*
data
data/*
*.enc
notebooks
notebooks/*
tests
tests/*
[metadata]
name = all_my_code
description = A repo of all my code - thought good to share
author = Luke Gregor
url = https://github.com/lukegre/all_my_code
long_description = file: README.rst
long_description_content_type = text/rst
license = MIT
license_file = LICENSE
## These need to be filled in by the author!
# For details see: https://pypi.org/classifiers/
classifiers =
Development Status :: 5 - Production/Stable
Topic :: Scientific/Engineering
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
# Don't change this one
License :: OSI Approved :: MIT License
## Add your email here
author_email = [email protected]
### make sure to fill in your dependencies!
[options]
install_requires =
astropy
matplotlib
tqdm
numpy
xarray
pandas
joblib
PyYAML
pooch
regionmask
PyCO2SYS
fuzzywuzzy
fsspec
python-Levenshtein
munch
setup_requires =
setuptools_scm
python_requires = >=3.6
################ Up until here
zip_safe = False
packages = find:
[flake8]
# https://flake8.pycqa.org/
max-line-length = 90
ignore = E122,E123,E126,E127,E128,E731,E722,C901,W605,W503
exclude = build,tests,.git,benchmarks,.asv
[tool:black]
# https://black.readthedocs.io/
skip-string-normalization = True # otherwise clash with precommit
line-length = 79
target-version = ['py37']
include = '\.pyi?$'
[tool:isort]
# https://github.com/timothycrosley/isort
multi_line_output = 3
include_trailing_comma = True
line_length = 79
[doc8]
# https://pypi.org/project/doc8/
ignore-path = docs/_build
max-line-length = 100
sphinx = True
[bdist_wheel]
universal=1
[tool:pytest]
testpaths=tests/