forked from mattrobenolt/jinja2-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (45 loc) · 1.36 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
47
48
49
50
#!/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
install_requires = ['jinja2']
tests_requires = ['pytest', 'flake8<3']
setup(
name='jinja2-cli',
version='0.7.0.dev0',
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(exclude=['tests']),
zip_safe=False,
license='BSD',
install_requires=install_requires,
extras_require={
'yaml': install_requires + ['pyyaml'],
'toml': install_requires + ['toml'],
'xml': install_requires + ['xmltodict'],
'tests': install_requires + tests_requires,
},
tests_require=tests_requires,
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'
],
)