made setup.py

and enable to install easier.
This commit is contained in:
ohbarye
2015-05-03 21:20:55 +09:00
parent 5945ec9e8e
commit f85a63ba06
10 changed files with 67 additions and 13 deletions
+19
View File
@@ -0,0 +1,19 @@
from setuptools import setup, find_packages
setup(
name = 'markdownserver',
version = '0.1.0',
packages = find_packages(),
include_packages_data = True,
install_requires = [
'bottle',
'Markdown',
'Pygments',
'py-gfm',
],
entry_points = """
[console_scripts]
markdownserver = markdownserver:main
""",
)