-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (37 loc) · 1010 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
33
34
35
36
37
38
39
40
41
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
requires = [
'setuptools',
'jinja2',
'markdown2',
'lxml',
'pp.client-python',
'loremipsum',
'Pillow',
'plac',
]
setup(name='europython.xml',
version='0.1',
description='EuroPython 2014 talks XML management',
long_description='',
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python",
],
author='Andreas Jung',
author_email='info@zopyx.com',
url='http://pypi.python.org/pypi/pp.client-python',
keywords='python',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
entry_points="""\
[console_scripts]
schedulexml2html=epxml.html:main
schedulexml2brochure=epxml.brochure:main
schedulexml2table=epxml.tablerenderer:main
""",
)