mirror of
https://github.com/cupcakearmy/tumbo.git
synced 2024-12-22 00:06:26 +00:00
d03a6b4050
Bumps [pyyaml](https://github.com/yaml/pyyaml) from 5.2 to 5.4. - [Release notes](https://github.com/yaml/pyyaml/releases) - [Changelog](https://github.com/yaml/pyyaml/blob/master/CHANGES) - [Commits](https://github.com/yaml/pyyaml/compare/5.2...5.4) 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.10.3',
|
|
'PyYAML==5.4',
|
|
'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,
|
|
)
|