-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 946 Bytes
/
setup.py
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
from setuptools import setup
from pathlib import Path
setup(
name='legoman',
version='3.0.5',
packages=['legoman'],
author="Evan Widloski",
author_email="[email protected]",
description="a tiny static website generator",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
include_package_data=True,
license="GPLv3",
keywords="static web generator jinja2 markdown",
url="https://github.com/evidlo/legoman",
entry_points={
'console_scripts': [
'legoman = legoman.legoman:main',
],
},
scripts=['legoman/legoman_cgi'],
install_requires=[
"jinja2",
"colorama",
"markdown",
"python-markdown-math",
"httpwatcher",
"mdx_include",
"markdown_captions",
"ghp-import",
"click"
],
classifiers=[
"Programming Language :: Python :: 3",
]
)