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

Got a setup.py for epilogue

parent 007d98e6
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/python
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import setup, find_packages
VERSION = open('src/_version.py').readlines()[-1].split()[-1].strip("\"'")
README = Path('README.md').read_text()
setup(
name=Path().absolute().name,
version=VERSION,
description='NRAO Archive Job Epilogue Script',
long_description=README,
author='NRAO SSA Team',
author_email='dms-ssa@nrao.edu',
url='TBD',
license="GPL",
install_requires=['pika', 'pycapo'],
keywords=[],
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3.8'
],
entry_points={
'console_scripts': ['epilogue = pyat.epilogue.commands:epilogue']
},
)
""" Version information for this package, don't put anything else here. """
___version___ = '0.1.5'
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