forked from mattrobenolt/jinja2-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·46 lines (42 loc) · 1.1 KB
/
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
42
43
44
45
46
#!/usr/bin/env python
"""
jinja2-cli
==========
.. code:: shell
$ jinja2 helloworld.tmpl data.json --format=json
$ cat data.json | jinja2 helloworld.tmpl
$ curl -s http://httpbin.org/ip | jinja2 helloip.tmpl
$ curl -s http://httpbin.org/ip | jinja2 helloip.tmpl > helloip.html
"""
from setuptools import setup, find_packages
setup(
name='jinja2-cli',
version='0.4.3',
author='Matt Robenolt',
author_email='[email protected]',
url='https://github.com/mattrobenolt/jinja2-cli',
description='A CLI interface to Jinja2',
long_description=__doc__,
packages=find_packages(),
zip_safe=False,
license='BSD',
install_requires=[
'jinja2',
],
tests_require=[
'nose',
],
test_suite='nose.collector',
include_package_data=True,
entry_points={
'console_scripts': [
'jinja2 = jinja2cli:main',
]
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)