generated from cormorack/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
66 lines (62 loc) · 1.49 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
[metadata]
name = echodataflow
# version = 0.1.1
maintainer = Soham Butala
maintainer_email = [email protected]
description = Sonar conversion pipeline tool with echopype
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/OSOceanAcoustics/echodataflow
license = MIT
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development :: Build Tools
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Scientific/Engineering
author = Soham Butala and Landung Setiawan
author_email = [email protected] | [email protected]
platforms = OS Independent
[options]
packages = find:
platforms = any
include_package_data = True
python_requires = >=3.8,<3.11
setup_requires =
setuptools_scm
[options.package_data]
echodataflow = rule_engine/*.txt
[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
pylint
docs =
sphinx
sphinx-automodapi
all =
%(test)s
%(lint)s
%(docs)s
[options.entry_points]
console_scripts =
echodataflow = echodataflow.echodataflow_cli:main