-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 755 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 755 Bytes
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
from setuptools import setup, find_packages
setup(
name='jin2cli',
version = '0.2',
description='json + jinja2 template == file',
url='https://github.com/tommyvn/jin2cli',
author='Tom van Neerijnen',
author_email='tom@tomvn.com',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['jinja2'],
keywords='cli jinja2 template',
license='Apache',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
],
entry_points={
'console_scripts': [
'jin2cli=jin2cli.cli:main',
],
},
)