-
Messaging system is now running on a more robust foundation: - `kombu` package for AMQP networking - New Messenger and Router objects - New message format - Easy-to-use callback subscribing - Can now get messages anywhere in the system easily and send replies back easily
Messaging system is now running on a more robust foundation: - `kombu` package for AMQP networking - New Messenger and Router objects - New message format - Easy-to-use callback subscribing - Can now get messages anywhere in the system easily and send replies back easily
setup.py 779 B
#!/usr/bin/python
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import setup
VERSION = open("vulture/_version.py").readlines()[-1].split()[-1].strip("\"'")
README = Path("README.md").read_text()
requires = [
"pendulum==2.1.2",
"py-dag",
"ssa-messaging",
"ssa-null",
"ssa-workspaces",
]
setup(
name="ssa-" + Path().absolute().name,
version=VERSION,
description="HTCondor fake executor.",
long_description=README,
author="NRAO SSA Team",
author_email="dms-ssa@nrao.edu",
url="TBD",
license="GPL",
install_requires=requires,
keywords=[],
packages=["vulture"],
classifiers=["Programming Language :: Python :: 3.8"],
entry_points={"console_scripts": ["vulture = vulture.execute:main"]},
)