-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
74 lines (70 loc) · 1.74 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
67
68
69
70
71
72
73
74
[metadata]
name = nene
fullname = Nēnē
description = A no-frills static site generator
long_description = file: README.md
long_description_content_type = text/markdown
author = Leonardo Uieda
author_email = [email protected]
license = MIT
license_file = LICENSE.txt
platform = any
keywords = html, markdown
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Topic :: Text Processing :: Markup :: HTML
Topic :: Text Processing :: Markup :: Markdown
Programming Language :: Python :: 3 :: Only
url = https://nene.leouieda.com
project_urls =
Documentation = https://nene.leouieda.com
Release Notes = https://github.com/leouieda/nene/releases
Bug Tracker = https://github.com/leouieda/nene/issues
Source Code = https://github.com/leouieda/nene
[options]
zip_safe = True
packages = find:
python_requires = >=3.8
install_requires =
markdown-it-py>=2.0
mdit-py-plugins>=0.3
jinja2>=3.0
pyyaml>=5.4
livereload>=2.6
click>=8
rich>=10.9
[options.extras_require]
jupyter =
nbformat
nbconvert
[options.entry_points]
console_scripts =
nene = nene.cli:main
[flake8]
max-line-length = 88
show-source = True
application-import-names = nene
docstring-convention = numpy
exclude =
doc/_build,
.eggs,
*.egg-info,
nene/_version_generated.py,
nene/__init__.py,
build,
.git,
__pycache__
select = A B C D E F G H I J K L M N O P Q R S T U V W X Y Z B902
inline-quotes = double
multiline-quotes = double
copyright-check = True
copyright-author = Leonardo Uieda
ignore =
# Unknown interpreted text role "func"
RST304
# Using print
T001