mirror of
https://github.com/cupcakearmy/tumbo.git
synced 2024-12-22 00:06:26 +00:00
9145a9113e
Bumps [jinja2](https://github.com/pallets/jinja) from 2.10.3 to 2.11.3. - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/master/CHANGES.rst) - [Commits](https://github.com/pallets/jinja/compare/2.10.3...2.11.3) Signed-off-by: dependabot[bot] <support@github.com>
37 lines
918 B
Python
37 lines
918 B
Python
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
requires = [
|
|
'Jinja2==2.11.3',
|
|
'PyYAML==5.2',
|
|
'termcolor==1.1.0',
|
|
]
|
|
|
|
setup(
|
|
name='tumbo',
|
|
version='0.7',
|
|
description='Matrix builder for docker',
|
|
license="GPLv3",
|
|
author='cupcakearmy',
|
|
author_email='hi@nicco.io',
|
|
url='https://github.com/cupcakearmy/tumbo',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
entry_points={
|
|
'console_scripts': ['tumbo=tumbo.cli:cli'],
|
|
},
|
|
python_requires='>=3.6',
|
|
setup_requires=requires,
|
|
install_requires=requires,
|
|
)
|