-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (35 loc) · 984 Bytes
/
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
"""
setup.py for using pip
"""
import setuptools
with open("README.md", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
setuptools.setup(
name="jinja2-tools",
version="1.0.8",
author="Aviel Yosef",
author_email="Avielyo10@gmail.com",
description="Use Jinja2 templates via cli",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Avielyo10/jinja2-tools.git",
packages=setuptools.find_packages(),
install_requires=[
'Click',
'ansicolors',
'PyYAML',
'Jinja2',
'requests',
'validators'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.5',
entry_points='''
[console_scripts]
jinja=jinja2_tools.cli:main
''',
)