forked from ansys/pyaedt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
88 lines (77 loc) · 2.29 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
88
import os
from setuptools import setup
import sys
import pip
import logging
logging.basicConfig(stream=sys.stderr, level=logging.INFO)
log = logging.getLogger()
from _setup_common import (
name,
version,
author,
maintainer,
maintainer_email,
description,
long_description,
packages,
data_files,
license,
classifiers,
)
is_ironpython = "IronPython" in sys.version or ".NETFramework" in sys.version
def install(package):
if hasattr(pip, "main"):
pip.main(["install", package])
else:
pip._internal.main(["install", package])
if sys.version_info >= (3, 7):
install_requires = [
"cffi == 1.15.0;platform_system=='Linux'",
"pywin32 >= 303;platform_system=='Windows'",
"pythonnet == 3.0.0rc4",
"jupyterlab",
"rpyc==5.0.1",
"pyvista>=0.34.1",
"numpy",
"ipython",
"matplotlib",
"psutil",
"dotnetcore2 ==3.1.23;platform_system=='Linux'",
]
elif is_ironpython:
install_requires = []
else:
sys.exit("PyAEDT supports only CPython 3.7-3.10 and IronPython 2.7.")
setup(
name=name,
version=version,
author=author,
maintainer=maintainer,
maintainer_email=maintainer_email,
description=description,
long_description=long_description,
long_description_content_type="text/x-rst",
install_requires=install_requires,
packages=packages,
data_files=data_files,
include_package_data=True,
license=license,
classifiers=classifiers,
)
if os.name == "posix" and not is_ironpython:
print(" ")
print(" ")
print(" ")
print("==========================================================================================================")
print(" ")
print("Configure ANSYSEM_ROOT222 or later and LD_LIBRARY_PATH to use it on Linux like in the following example.")
print("Example:")
print("export ANSYSEM_ROOT222=/path/to/AnsysEM/v222/Linux64")
msg = "export LD_LIBRARY_PATH="
msg += "$ANSYSEM_ROOT222/common/mono/Linux64/lib64:$ANSYSEM_ROOT222/Delcross:$LD_LIBRARY_PATH"
print(msg)
print(" ")
print("==========================================================================================================")
print(" ")
print(" ")
print(" ")