-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (43 loc) · 1.27 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
[metadata]
name = papermill_report
description = Microservice to generate Jupyter reports
long-description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ariadnext/papermill_report
classifiers =
Environment :: Console
Intended Audience :: Developers
Natural Language :: English
License :: OSI Approved :: BSD License
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
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development
author = ARIADNEXT
license = BSD-3-Clause
keywords = papermill_report, papermill, jupyterhub, tornado
[options]
packages = find:
python_requires = >=3.6
include_package_data = True
zip_safe = False
setup_requires =
setuptools_scm
toml
[entry_points]
console_scripts =
papermill-report = papermill_report.papermill_report.main
[bdist_wheel]
universal = 1
[aliases]
# Define setup.py command aliases here
test = pytest
[tool:pytest]
addopts = --strict-markers -m "not e2e" -rfEx
markers =
e2e: marks end-2-end tests