Skip to content
Snippets Groups Projects
Commit f6f8ecdd authored by Daniel Lyons's avatar Daniel Lyons
Browse files

WS-507: Initial take at ingest_envoy

parent 12825627
No related branches found
No related tags found
1 merge request!308WS-507: Initial take at ingest_envoy
Pipeline #2024 passed with warnings
# Ingestion Envoy
""" Version information for this package, don't put anything else here. """
___version___ = '4.0.0a1.dev1'
def main():
print("Hello, world!")
\ No newline at end of file
#!/usr/bin/python
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import find_packages, setup
VERSION = open("ingest_envoy/_version.py").readlines()[-1].split()[-1].strip("\"'")
README = Path("README.md").read_text()
requires = ["pycapo", "pex==2.1.41"]
setup(
name="ssa-" + Path().absolute().name,
version=VERSION,
description="Workspaces ingestion functionality bridge",
long_description=README,
author="NRAO SSA Team",
author_email="dms-ssa@nrao.edu",
url="TBD",
license="GPL",
install_requires=requires,
keywords=[],
packages=find_packages(),
classifiers=["Programming Language :: Python :: 3.8"],
entry_points={"console_scripts": ["ingest_envoy = ingest_envoy.main:main"]},
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment