-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
65 lines (63 loc) · 1.44 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
[metadata]
name = echoshader
description = Open Source Python package for building ocean sonar data visualizations.
author = Dingrui Lei
author_email = "[email protected]"
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/OSOceanAcoustics/echoshader
license = MIT
classifiers =
Development Status :: 1 - Planning
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering :: Visualization
platforms = OS Independent
[options]
packages = find:
platforms = any
py_modules = _echoshader_version
include_package_data = True
python_requires = >=3.8
setup_requires =
setuptools_scm
[options.extras_require]
test =
pytest
pytest-cov
pytest-flake8
pytest-xdist
pytest-mock
lint =
black
check-manifest
flake8
flake8-builtins
flake8-comprehensions
flake8-mutable
flake8-print
isort
mypy
numpydoc
pre-commit
codespell
pylint
docs =
sphinx
sphinx-automodapi
sphinx_rtd_theme
sphinxcontrib-mermaid
jupyter-book
numpydoc
docutils<0.18
all =
%(test)s
%(lint)s
%(docs)s