Package design improvements

This commit is contained in:
Mark Vartanyan 2018-12-26 16:23:39 +03:00
parent 362aed9d41
commit d3eb36c7d9
3 changed files with 9 additions and 5 deletions

View File

@ -1,4 +1,4 @@
## 0.3.4
## 0.3.4 (2018-12-26)
* `-o outfile` option writes to a file
## 0.3.3

5
setup.cfg Normal file
View File

@ -0,0 +1,5 @@
[bdist_wheel]
universal = 1
[metadata]
license_file = LICENSE

View File

@ -1,6 +1,5 @@
#!/usr/bin/env python
"""
j2cli - Jinja2 Command-Line Tool
""" j2cli - Jinja2 Command-Line Tool
================================
`j2cli` is a command-line tool for templating in shell-scripts,
@ -20,14 +19,14 @@ from setuptools import setup, find_packages
setup(
name='j2cli',
version='0.3.4-0',
version='0.3.4-1',
author='Mark Vartanyan',
author_email='kolypto@gmail.com',
url='https://github.com/kolypto/j2cli',
license='BSD',
description='Command-line interface to Jinja2 for templating in shell scripts.',
long_description=__doc__,
long_description=__doc__, # can't do open('README.md').read() because we're describing self
long_description_content_type='text/markdown',
keywords=['Jinja2', 'templating', 'command-line', 'CLI'],