Skip to content

Commit

Permalink
fix(deps) Stop importing requirements.txt into setup.py (#342)
Browse files Browse the repository at this point in the history
Signed-off-by: Tao Feng <fengtao04@gmail.com>
  • Loading branch information
Joseph Atkins-Turkish committed Aug 26, 2020
1 parent 0339dd5 commit 1266923
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
# Copyright Contributors to the Amundsen project.
# SPDX-License-Identifier: Apache-2.0

import os
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_file.readlines()

requirements = [
"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']

Expand Down

0 comments on commit 1266923

Please sign in to comment.