Skip to content
Snippets Groups Projects
setup.py 834 B
#!/usr/bin/python
# -*- coding: utf-8 -*-

""" setter-upper for ingestion manifest creation """

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", "astropy", "pendulum"]

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.ingest:main"]},
)