runon/setup.py

23 lines
504 B
Python
Raw Normal View History

2023-12-04 21:37:30 +01:00
from setuptools import find_packages, setup
setup(
name = "runon",
version = "2.0.0.dev0",
maintainer = "Gilles Grandou",
maintainer_email = "gilles@grandou.net",
description = "Run your commands on any systems",
packages = find_packages(),
python_requires = ">=3.6",
install_requires = [
2023-12-04 22:39:30 +01:00
"pathlib",
2023-12-04 21:37:30 +01:00
"pyxdg",
2023-12-04 22:39:30 +01:00
"pyyaml",
"pytz",
2023-12-04 21:37:30 +01:00
],
entry_points={
"console_scripts": [
"runon=runon.runon:main",
],
}
)