-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
28 lines (25 loc) · 824 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
#!/usr/bin/env python
from setuptools import setup
setup(
# Metadata
name='breakdown',
version='0.9.7',
description='Lightweight jinja2 template prototyping server',
long_description=open('README.rst').read(),
author='Concentric Sky',
author_email='[email protected]',
classifiers=[
'Environment :: Console',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Framework :: Django',
'Topic :: Text Processing :: Markup :: HTML'
],
install_requires=['jinja2>=2.6', 'CleverCSS', 'PIL'],
# Program data
scripts=['scripts/breakdown'],
packages=['breakdown'],
package_data={'breakdown': ['img/*']},
)