forked from syrusakbary/pyjade
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 665 Bytes
/
Copy pathsetup.py
File metadata and controls
18 lines (17 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup,find_packages
setup(name='pyjade',
version='2.2.0',
download_url='git@github.com:syrusakbary/pyjade.git',
packages=find_packages(),
author='Syrus Akbary',
author_email='me@syrusakbary.com',
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'])