-
Notifications
You must be signed in to change notification settings - Fork 64
/
setup.py
69 lines (62 loc) · 2.36 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
from setuptools import setup
import platform
import os
import sysconfig
# this setup.py assumes that pymeshlab has been already built,
# installed in the pymeshlab directory of this repository
# and then deployed. See the scripts directory for more info.
# read the contents of README file
from os import path
import sys
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
f = open("PYML_VERSION", "r")
pymeshlabversion = f.read()
install_requires = ['numpy']
# if on windows, add msvc-runtime as dependency
osused = platform.system()
if osused == 'Windows':
# msvc-runtime is still missing for python 3.12
if sys.version_info[1] < 12:
install_requires.append('msvc-runtime')
try:
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
class bdist_wheel(_bdist_wheel):
def finalize_options(self):
_bdist_wheel.finalize_options(self)
self.root_is_pure = False
def get_tag(self):
a, b, c = super().get_tag()
if platform.system() == 'Windows':
platform_tag = 'win_amd64'
elif platform.system() == 'Linux':
arch = sysconfig.get_platform().split('-')[1]
glibc_version = os.popen('ldd --version').read().split('\n')[0].split()[-1]
glibc_version = glibc_version.replace('.', '_')
platform_tag = 'manylinux_' + glibc_version + '_' + arch
elif platform.system() == 'Darwin':
arch = platform.machine()
pltf = 'macosx_11_0_x86_64'
if arch == 'arm64':
pltf = 'macosx_11_0_arm64'
platform_tag = pltf
return a, b, platform_tag
except ImportError:
bdist_wheel = None
setup(
name='pymeshlab',
version=pymeshlabversion,
cmdclass={'bdist_wheel': bdist_wheel},
description='A Python interface to MeshLab',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/cnr-isti-vclab/PyMeshLab',
author='Alessandro Muntoni, Paolo Cignoni',
author_email='[email protected]',
license='GPL3',
install_requires=install_requires,
packages=['pymeshlab', 'pymeshlab.tests'],
include_package_data=True,
zip_safe=False
)