forked from IrSent/jinja2-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
703ba5f
commit d7cc507
Showing
4 changed files
with
106 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,38 +13,34 @@ | |
|
||
from setuptools import setup, find_packages | ||
|
||
install_requires = ['jinja2'] | ||
tests_requires = ['pytest', 'flake8<3'] | ||
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', | ||
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']), | ||
packages=find_packages(exclude=["tests"]), | ||
zip_safe=False, | ||
license='BSD', | ||
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, | ||
"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', | ||
] | ||
}, | ||
entry_points={"console_scripts": ["jinja2 = jinja2cli:main"]}, | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'Operating System :: OS Independent', | ||
'Topic :: Software Development' | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"Operating System :: OS Independent", | ||
"Topic :: Software Development", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters