-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
87 lines (76 loc) · 3.21 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# pylint: disable=missing-docstring, broad-except
import subprocess
import os
import platform
import sysconfig
import setuptools
from setuptools.command.install import install
with open("README.md", "r") as fh:
long_description = fh.read()
uplinkc_version = "v1.2.2"
class Install(install):
@staticmethod
def find_module_path():
new_path = os.path.join(sysconfig.get_paths()['purelib'], "uplink_python")
try:
os.makedirs(new_path, exist_ok=True)
os.system("echo Directory uplink_python created successfully.")
except OSError as error:
os.system("echo Error in creating uplink_python directory. Error: " + str(error))
return new_path
def run(self):
try:
install_path = self.find_module_path()
os.system("echo Package installation path: " + install_path)
if platform.system() == "Windows":
os.system("icacls " + install_path + " /grant Everyone:F /t")
else:
os.system("sudo chmod -R 777 " + install_path)
os.system("echo Building libuplinkc.so")
copy_command = "copy" if platform.system() == "Windows" else "cp"
command = "git clone -b "+uplinkc_version+ "https://github.com/storj/uplink-c && cd uplink-c" \
"&& go build -o libuplinkc.so -buildmode=c-shared" \
"&& " + copy_command + " *.so " + install_path
build_so = subprocess.Popen(command,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT, shell=True)
output, errors = build_so.communicate()
build_so.wait()
if output is not None:
os.system("echo " + output.decode('utf-8'))
os.system("echo Building libuplinkc.so successful.")
if errors is not None:
os.system("echo " + errors.decode('utf-8'))
os.system("echo Building libuplinkc.so failed.")
if build_so.returncode != 0:
os.exit(1)
except Exception as error:
os.system("echo " + str(error))
os.system("echo Building libuplinkc.so failed.")
install.run(self)
setuptools.setup(
name="uplink-python",
version="1.2.2.0",
author="Utropicmedia",
author_email="[email protected]",
license='Apache Software License',
description="Python-native language binding for uplink to "
"communicate with the Storj network.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/storj-thirdparty/uplink-python",
packages=['uplink_python'],
install_requires=['wheel'],
include_package_data=True,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Build Tools",
],
python_requires='>=3.4',
cmdclass={
'install': Install,
}
)