Skip to content

Commit

Permalink
Remove nats requirements from setup.py (#2744)
Browse files Browse the repository at this point in the history
  • Loading branch information
argush3 authored Jun 7, 2024
1 parent bb49652 commit f173803
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions legal-api/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ def read(filepath):


REQUIREMENTS = read_requirements('requirements.txt')
REQUIREMENTS_NATS = read_requirements('requirements-nats.txt')

setup(
name="legal_api",
Expand All @@ -66,8 +65,5 @@ def read(filepath):
zip_safe=False,
install_requires=REQUIREMENTS,
setup_requires=["pytest-runner", ],
tests_require=["pytest", ],
extras_require={
'nats': REQUIREMENTS_NATS
}
tests_require=["pytest", ]
)

0 comments on commit f173803

Please sign in to comment.