-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
61 lines (54 loc) · 1.52 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
[metadata]
name = datamaestro
author = Benjamin Piwowarski
author-email = [email protected]
home-page = https://github.com/experimaestro/datamaestro
description = "Dataset management command line and API"
long-description = file: README.md, CHANGELOG.md
long-description-content-type = text/markdown
license = GPL-3
license_file = LICENSE
platform = any
keywords = dataset manager
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries :: Python Modules
[options.entry_points]
console_scripts =
datamaestro = datamaestro.__main__:main
mkdocs.plugins =
datamaestro = datamaestro.commands.site:DatasetGenerator
[options]
zip_safe = false
include_package_data = true
python_requires = >= 3.8
package_dir=
=src
packages=find:
test_suite = datamaestro.test
setup_requires =
setuptools >= 65.0.0
setuptools_scm
wheel
[options.packages.find]
where=src
[options.extras_require]
test =
tox
[mypy]
python_version = 3.8
warn_unused_ignores = True
[flake8]
doctests = True
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/
max-line-length = 88
# See https://github.com/PyCQA/pycodestyle/issues/373
extend-ignore = E203