-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 826 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
from setuptools import setup
def readme():
try:
with open('README.rst') as f:
return f.read()
except:
return "no readme available"
setup(name='atompages',
version='0.1',
description='Simple web page templating using jinja2, markdown and bootstrap supported responsiveness',
url='http://github.com/dominikandreas/atompages',
author='Dominik Dienlin',
author_email='dominik@dienlin.net',
install_requires=[
"click",
"simple_tools",
"jinja2",
"watchdog",
"libsass",
"markdown",
"cherrypy",
"MarkupSafe>=0.23"
],
license='MIT',
include_package_data=True,
packages=['atompages'],
zip_safe=False,
entry_points = {
'console_scripts': ['atompages=atompages.cli:main'],
})