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
2a73a9ae
Unverified
Commit
2a73a9ae
authored
Aug 06, 2019
by
Tao Feng
Committed by
GitHub
Aug 06, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix setup script for databuilder repo (#127)
parent
1ec215fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
25 deletions
+7
-25
setup.py
setup.py
+7
-25
No files found.
setup.py
View file @
2a73a9ae
import
os
from
setuptools
import
setup
,
find_packages
__version__
=
'1.4.
0
'
__version__
=
'1.4.
1
'
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
()
setup
(
name
=
'amundsen-databuilder'
,
version
=
__version__
,
...
...
@@ -13,30 +18,7 @@ setup(
maintainer_email
=
'dev@lyft.com'
,
packages
=
find_packages
(
exclude
=
[
'tests*'
]),
dependency_links
=
[],
install_requires
=
[
# Packages in here should rarely be pinned. This is because these
# packages (at the specified version) are required for project
# consuming this library. By pinning to a specific version you are the
# number of projects that can consume this or forcing them to
# upgrade/downgrade any dependencies pinned here in their project.
#
# Generally packages listed here are pinned to a major version range.
#
# e.g.
# Python FooBar package for foobaring
# pyfoobar>=1.0, <2.0
#
# This will allow for any consuming projects to use this library as
# long as they have a version of pyfoobar equal to or greater than 1.x
# and less than 2.x installed.
'pyhocon==0.3.42'
,
'pytest==3.6.0'
,
'six'
,
'neo4j-driver==1.7.2'
,
'antlr4-python2-runtime==4.7.1'
,
'statsd==3.2.1'
,
'retrying==1.3.3'
,
],
install_requires
=
requirements
,
extras_require
=
{
':python_version=="2.7"'
:
[
'typing>=3.6'
],
# allow typehinting PY2
'kafka'
:
[
'confluent-kafka==1.0.0'
],
# To use with Kafka source extractor
...
...
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