forked from madeindjs/Super-Markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (38 loc) · 1.4 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import SuperMarkdown
setup(
name='SuperMarkdown',
version="0.2.4",
packages=find_packages(),
author="Rousseau Alexandre",
author_email="rousseaualexandre.lyon@gmail.com",
description="export a complex Markdown file into a standalone HTML file.",
long_description=open('README.md').read(),
install_requires=['Markdown','markdown-checklist','graphviz','beautifulsoup4'],
include_package_data=True,
eager_resources={'':[
'snippet.html',
]},
url='https://github.com/madeindjs/Super-Markdown',
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Programming Language :: Python :: 3.4",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Markup :: HTML",
],
entry_points = {
'console_scripts': [
'super-markdown = SuperMarkdown.SuperMarkdown:main',
],
},
)