-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 739 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 739 Bytes
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
from setuptools import setup
setup(
name="obestwalter.github.io",
author="Oliver Bestwalter",
url="https://github.com/obestwalter/obestwalter.github.io",
version="19.11dev1",
packages=["lebut"],
install_requires=[
"livereload",
"fire",
# FIXME for modified header anchor plugin
"python-slugify",
# FIXME should be part of typogrify plugin
"typogrify",
# FIXME should be part of notebook plugin
"jupyter",
"nbconvert",
"nbformat",
# atm editable version from master is installed in toxenv
# "lektor"
],
extras_require={"test": ["pytest"]},
entry_points={"console_scripts": ["lebut = lebut.cli:main"]},
)