forked from IMTEK-Simulation/dtool-lookup-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAINT: rebrand everything to dserver
- Loading branch information
Showing
5 changed files
with
36 additions
and
36 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
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,7 @@ | ||
import os | ||
from setuptools import setup | ||
|
||
url = "https://github.com/IMTEK-Simulation/dtool-lookup-api" | ||
url = "https://github.com/livMatS/dserver-client" | ||
readme = open('README.rst').read() | ||
|
||
|
||
|
@@ -12,17 +12,17 @@ def local_scheme(version): | |
|
||
|
||
setup( | ||
name="dtool_lookup_client", | ||
packages=["dtool_lookup_client"], | ||
description="Dtool plugin for interacting with dtool lookup server", | ||
name="dserver_client", | ||
packages=["dserver_client"], | ||
description="Dtool plugin for interacting with dserver", | ||
long_description=readme, | ||
include_package_data=True, | ||
author="Tjelvar Olsson", | ||
author_email="[email protected]", | ||
use_scm_version={ | ||
"root": '.', | ||
"relative_to": __file__, | ||
"write_to": os.path.join("dtool_lookup_client", "version.py"), | ||
"write_to": os.path.join("dserver_client", "version.py"), | ||
"local_scheme": local_scheme}, | ||
setup_requires=[ | ||
'setuptools_scm' | ||
|
@@ -40,9 +40,9 @@ def local_scheme(version): | |
], | ||
entry_points={ | ||
"dtool.cli": [ | ||
"lookup=dtool_lookup_client:lookup", | ||
"search=dtool_lookup_client:search", | ||
"query=dtool_lookup_client:query", | ||
"lookup=dserver_client:lookup", | ||
"search=dserver_client:search", | ||
"query=dserver_client:query", | ||
], | ||
}, | ||
license="MIT" | ||
|
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,6 +1,6 @@ | ||
"""Test the dtool_lookup_client package.""" | ||
"""Test the dserver_client package.""" | ||
|
||
|
||
def test_version_is_string(): | ||
import dtool_lookup_client | ||
assert isinstance(dtool_lookup_client.__version__, str) | ||
import dserver_client | ||
assert isinstance(dserver_client.__version__, str) |
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