This repository has been archived by the owner on May 20, 2020. It is now read-only.
forked from matildreema/j2cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·60 lines (50 loc) · 1.51 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
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
"""
j2cli
==========
Command-line interface to [Jinja2](http://jinja.pocoo.org/docs/) for templating in shell scripts.
Features:
* Jinja2 templating
* Allows to use environment variables! Hello [Docker](http://www.docker.com/) :)
* INI, YAML, JSON data sources supported
Inspired by [mattrobenolt/jinja2-cli](https://github.com/mattrobenolt/jinja2-cli)
"""
from setuptools import setup, find_packages
setup(
name='j2cli',
version='0.3.1-0',
author='Mark Vartanyan',
author_email='[email protected]',
url='https://github.com/kolypto/j2cli',
license='BSD',
description='Command-line interface to Jinja2 for templating in shell scripts.',
long_description=__doc__,
keywords=['Jinja2', 'templating', 'command-line', 'CLI'],
packages=find_packages(),
scripts=[],
entry_points={
'console_scripts': [
'j2 = j2cli:main',
]
},
install_requires=[
'jinja2 >= 2.7.2',
],
extras_require={
'yaml': ['pyyaml',]
},
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Natural Language :: English',
'Programming Language :: Python :: 2',
#'Programming Language :: Python :: 3',
],
)