Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
AmendsenProject
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shaik Janipasha
AmendsenProject
Commits
12669231
Unverified
Commit
12669231
authored
Aug 26, 2020
by
Joseph Atkins-Turkish
Committed by
GitHub
Aug 26, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(deps) Stop importing requirements.txt into setup.py (#342)
Signed-off-by:
Tao Feng
<
fengtao04@gmail.com
>
parent
0339dd55
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
setup.py
setup.py
+12
-5
No files found.
setup.py
View file @
12669231
# 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'
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment