summaryrefslogtreecommitdiff
path: root/wrappers/python/setup.py
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-07-08 16:03:50 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-07-08 16:03:50 +0200
commita6cba736913dd78a8ac6907e0b0572cf90aee866 (patch)
tree71209a03c7fddc268ed412c8d851a64d625bc520 /wrappers/python/setup.py
parent65dffc1f09af640417727d5d346e08edc6c2772e (diff)
RPM & Setup: Separate eduVPN and common name with a - or _
Diffstat (limited to 'wrappers/python/setup.py')
-rwxr-xr-xwrappers/python/setup.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py
index 2b682cd..b2214e7 100755
--- a/wrappers/python/setup.py
+++ b/wrappers/python/setup.py
@@ -100,11 +100,11 @@ class bdist_wheel(_bdist_wheel):
setup(
- name="eduvpncommon",
+ name="eduvpn_common",
version="0.1.0",
- packages=["eduvpncommon"],
+ packages=["eduvpn_common"],
python_requires=">=3.6",
- package_dir={"eduvpncommon": "src"},
- package_data={"eduvpncommon": [f"lib/*{_libname}*"]},
+ package_dir={"eduvpn_common": "src"},
+ package_data={"eduvpn_common": [f"lib/*{_libname}*"]},
cmdclass={"bdist_wheel": bdist_wheel},
)