-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
48 lines (42 loc) · 866 Bytes
/
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
[metadata]
name = jcb
version = attr: jcb.__version__
description = JEDI Configuration Builder
long_description = file: README.md
long_description_content_type = text/markdown
author = NOAA, NASA, JCSDA
keywords = JEDI, JCSDA, NOAA, NASA
home_page = https://github.com/NOAA-EMC/jcb
[options]
zip_safe = False
include_package_data = True
package_dir =
=src
packages = find_namespace:
python_requires = >= 3.6
setup_requires =
setuptools
install_requires =
PyYAML>=6.0
Jinja2>=3.1.2
click>=8.0
tests_require =
pytest
flake8
flake8-import-order
[options.extras_require]
testing =
pytest>=7
flake8
flake8-import-order
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
jcb = jcb.driver:main
[options.package_data]
* = *.yaml, *.j2
[flake8]
exclude = jcb/__init__.py
max-line-length = 100
import-order-style = pep8