| Server IP : 82.208.35.60 / Your IP : 216.73.216.168 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/devel/py-azure-multiapi-storage/files/ |
Upload File : |
# https://github.com/Azure/azure-multiapi-storage-python/pull/29/files
--- setup.py.orig 2020-07-08 12:22:39 UTC
+++ setup.py
@@ -18,6 +18,13 @@
from setuptools import find_packages, setup
import sys
+if sys.version_info[0] < 3:
+ packages = find_packages()
+else:
+ # ensure that the "azure" native namespace is coherent
+ from setuptools import find_namespace_packages
+ packages = find_namespace_packages(include=["azure.multiapi.*"])
+
# azure v0.x is not compatible with this package
# azure v0.x used to have a __version__ attribute (newer versions don't)
try:
@@ -57,7 +64,7 @@ setup(
'License :: OSI Approved :: Apache Software License',
],
zip_safe=False,
- packages=find_packages(exclude=["azure"]),
+ packages=packages,
install_requires=[
'azure-common',
'cryptography',