-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
45 lines (41 loc) · 1.16 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
[metadata]
name = jarn.viewdoc
version = 3.0
description = Python documentation viewer
long_description = file: README.rst, CHANGES.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
keywords = view, rest, rst, package, docs, documentation, rst2html, long-description
author = Stefan H. Holek
author_email = stefan@epy.co.at
url = https://github.com/Jarn/jarn.viewdoc
license = BSD-2-Clause
[options]
packages =
jarn
jarn.viewdoc
zip_safe = false
install_requires =
setuptools >= 68.0.0; python_version < '3.8'
setuptools >= 68.2.2; python_version >= '3.8'
docutils >= 0.20.1
pygments >= 2.16.1
blessed >= 1.20.0
importlib-metadata >= 6.7.0; python_version < '3.8'
python_requires = >=3.7
[options.entry_points]
console_scripts =
viewdoc = jarn.viewdoc.viewdoc:main
[options.extras_require]
testing =
nose2 >= 0.13.0
nose2-kflag >= 1.0
[egg_info]
tag_build = dev0