Unverified Commit 12669231 authored by Joseph Atkins-Turkish's avatar Joseph Atkins-Turkish Committed by GitHub

fix(deps) Stop importing requirements.txt into setup.py (#342)

Signed-off-by: 's avatarTao Feng <fengtao04@gmail.com>
parent 0339dd55
# Copyright Contributors to the Amundsen project. # Copyright Contributors to the Amundsen project.
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
import os
from setuptools import setup, find_packages from setuptools import setup, find_packages
__version__ = '3.1.0' __version__ = '3.2.0'
requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')
with open(requirements_path) as requirements_file: requirements = [
requirements = requirements_file.readlines() "neo4j-driver>=1.7.2,<4.0",
"pytz>=2018.4",
"statsd>=3.2.1",
"retrying>=1.3.3",
"requests>=2.23.0,<3.0",
"elasticsearch>=6.2.0,<7.0",
"pyhocon>=0.3.42",
"unidecode",
]
kafka = ['confluent-kafka==1.0.0'] kafka = ['confluent-kafka==1.0.0']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment