-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.22 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.22 KB
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
from setuptools import setup, find_packages
setup(
name="void",
packages=find_packages(exclude=["tests"]),
version="0.0.0",
license="MIT License",
description="Render HTML content from Markdown source",
author="Clay McClure <clay@daemons.net>",
author_email="clay@daemons.net",
url="https://github.com/claymation/void",
keywords=["markup", "markdown"],
entry_points={
"console_scripts": [
"void = void.void:main",
]
},
install_requires=[
"awesome-slugify",
"CommonMark",
"Jinja2",
"watchdog",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Documentation",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing :: Markup",
"Topic :: Utilities"])