Skip to content
Snippets Groups Projects
Commit a4444190 authored by Nathan Hertz's avatar Nathan Hertz
Browse files

Hopefully final changes to setup.py files regarding package name changes;...

Hopefully final changes to setup.py files regarding package name changes; renamed a amqp_helpers dir to channels
parent 5118ce20
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ tests_require = [
]
setup(
name='ssa-' + 'ssa-' + Path().absolute().name,
name='ssa-' + Path().absolute().name,
version=VERSION,
description='NRAO Archive Data Fetcher Script',
long_description=README,
......
......@@ -10,8 +10,8 @@ README = Path('README.md').read_text()
requires = [
'pika==1.1',
'pendulum==2.1.2',
'workspaces',
'amqp_helpers'
'ssa-workspaces',
'ssa-channels'
]
tests_require = [
'pytest>=5.4,<6.0',
......
......@@ -4,11 +4,11 @@
from pathlib import Path
from setuptools import setup, find_packages
VERSION = open('src/amqp_helpers/_version.py').readlines()[-1].split()[-1].strip("\"'")
VERSION = open('src/channels/_version.py').readlines()[-1].split()[-1].strip("\"'")
README = Path('README.md').read_text()
setup(
name=Path().absolute().name,
name='ssa-' + Path().absolute().name,
version=VERSION,
description='Workspaces AMQP utility area',
long_description=README,
......@@ -18,7 +18,7 @@ setup(
license="GPL",
install_requires=['pika', 'pycapo'],
keywords=[],
packages=['amqp_helpers'],
packages=['channels'],
package_dir={'':'src'},
classifiers=[
'Programming Language :: Python :: 3.8'
......
......@@ -10,7 +10,7 @@ README = Path('README.md').read_text()
requires = [
'pycapo',
'marshmallow',
'schema',
'ssa-schema',
'sqlalchemy',
]
tests_require = [
......
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