Skip to content

Commit 8c74a1a

Browse files
committed
moved
1 parent e0ad4ba commit 8c74a1a

File tree

12 files changed

+7
-2
lines changed

12 files changed

+7
-2
lines changed

clients/python/client/setup.py renamed to clients/python/setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
NAME = "osparc"
99
VERSION = VERSION_FILE.read_text()
10+
1011
# To install the library, run the following
1112
#
1213
# python setup.py install
@@ -25,7 +26,7 @@
2526
f"osparc_client=={VERSION}",
2627
]
2728

28-
setup(
29+
SETUP = dict(
2930
name=NAME,
3031
version=VERSION,
3132
description="osparc.io web API",
@@ -35,7 +36,7 @@
3536
install_requires=REQUIRES,
3637
packages=find_packages(exclude=["test", "tests"]),
3738
include_package_data=True,
38-
package_dir={"": "."},
39+
package_dir={"": "src"},
3940
package_data={
4041
"": [
4142
"data/openapi.json",
@@ -56,3 +57,7 @@
5657
"Programming Language :: Python :: 3",
5758
],
5859
)
60+
61+
62+
if __name__ == "__main__":
63+
setup(**SETUP)

0 commit comments

Comments
 (0)