-
Notifications
You must be signed in to change notification settings - Fork 122
/
setup.py
26 lines (25 loc) · 844 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
from setuptools import setup,find_packages
setup(name='pyjade',
version='4.0.0',
download_url='[email protected]:syrusakbary/pyjade.git',
packages=find_packages(),
author='Syrus Akbary',
author_email='[email protected]',
description='Jade syntax template adapter for Django, Jinja2, Mako and '
'Tornado templates',
long_description=open('README.rst').read(),
keywords='jade template converter',
url='http://github.com/syrusakbary/pyjade',
license='MIT',
entry_points={
'console_scripts' : ['pyjade = pyjade.convert:convert_file',]
},
install_requires=['six'],
tests_require=[
'nose',
'django',
'jinja2',
'tornado',
'pyramid >= 1.4, <= 1.4.99',
'mako',
])