2019-08-21 22:45:53 +02:00
|
|
|
import os
|
2019-10-05 23:42:08 +02:00
|
|
|
from setuptools import setup
|
2019-08-21 22:45:53 +02:00
|
|
|
|
|
|
|
try:
|
2022-03-01 08:53:24 +01:00
|
|
|
readme = open(os.path.join(os.path.dirname(__file__), "README.md")).read()
|
2019-08-21 22:45:53 +02:00
|
|
|
except:
|
2022-03-01 08:53:24 +01:00
|
|
|
readme = ""
|
2019-08-21 22:45:53 +02:00
|
|
|
|
|
|
|
setup(
|
2022-03-01 08:53:24 +01:00
|
|
|
name="podman-compose",
|
2019-08-21 22:45:53 +02:00
|
|
|
description="A script to run docker-compose.yml using podman",
|
|
|
|
long_description=readme,
|
2022-03-01 08:53:24 +01:00
|
|
|
long_description_content_type="text/markdown",
|
2019-08-21 22:45:53 +02:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.5",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Topic :: Software Development :: Build Tools",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
|
|
|
|
],
|
2022-03-01 08:53:24 +01:00
|
|
|
keywords="podman, podman-compose",
|
|
|
|
author="Muayyad Alsadi",
|
|
|
|
author_email="alsadi@gmail.com",
|
|
|
|
url="https://github.com/containers/podman-compose",
|
|
|
|
py_modules=["podman_compose"],
|
|
|
|
entry_points={"console_scripts": ["podman-compose = podman_compose:main"]},
|
2019-08-21 22:45:53 +02:00
|
|
|
include_package_data=True,
|
2022-03-01 08:53:24 +01:00
|
|
|
license="GPL-2.0-only",
|
2021-09-08 13:23:02 +02:00
|
|
|
install_requires=[
|
2022-03-01 08:53:24 +01:00
|
|
|
"pyyaml",
|
|
|
|
"python-dotenv",
|
2021-09-08 13:23:02 +02:00
|
|
|
],
|
|
|
|
# test_suite='tests',
|
|
|
|
# tests_require=[
|
|
|
|
# 'coverage',
|
|
|
|
# 'pytest-cov',
|
|
|
|
# 'pytest',
|
|
|
|
# 'tox',
|
|
|
|
# ]
|
2019-08-21 22:45:53 +02:00
|
|
|
)
|