-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (23 loc) · 866 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
from setuptools import setup, find_packages
install_requires = ['Mako', 'docutils', 'Pygments', 'requests',
'rst2pdf', 'Pillow', 'pyPdf', 'feedgenerator',
'konfig']
setup(name='kompost',
version="0.1",
url='https://github.com/faitmain/kompost',
packages=find_packages(),
description=("FaitMain Magazine"),
author="Tarek Ziade",
author_email="[email protected]",
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: Apache Software License"],
zip_safe=False,
install_requires=install_requires,
entry_points="""
[console_scripts]
kompost = kompost.generate:main
kompost-pdf = kompost.generate_pdf:main
""")