-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes the display name issues for tables, and tags count (#69)
* Fixes the names and tags issue for atlas * Moved the helper functions to atlasclient module * Updates the atlasclient package to pyatlasclient
- Loading branch information
Showing
7 changed files
with
84 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
import os | ||
|
||
from setuptools import setup, find_packages | ||
|
||
__version__ = '1.0.16' | ||
__version__ = '1.0.17' | ||
|
||
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-metadata', | ||
|
@@ -12,27 +17,5 @@ | |
maintainer_email='[email protected]', | ||
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. | ||
'Flask-RESTful>=0.3.6', | ||
'neo4j-driver==1.6.0', | ||
'beaker>=1.10.0', | ||
'statsd>=3.2.1', | ||
'atlasclient>=0.1.7' | ||
] | ||
install_requires=requirements, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters