forked from ansys/pyaedt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (44 loc) · 1.19 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
import setuptools
import sys
import pip
from _setup_common import (
name,
version,
author,
maintainer,
maintainer_email,
description,
long_description,
packages,
data_files,
license,
classifiers,
)
def install(package):
if hasattr(pip, "main"):
pip.main(["install", package])
else:
pip._internal.main(["install", package])
if sys.version_info >= (3, 9):
install_requires = ["pywin32 >= 2.2.7;platform_system=='Windows'"]
install("https://github.com/pyansys/PyAEDT/raw/release/0.3/pythonnet-2.5.2-cp39-cp39-win_amd64.whl")
elif sys.version_info >= (3, 0):
install_requires = ["pywin32 >= 2.2.7;platform_system=='Windows'", "pythonnet >= 2.4.0;platform_system=='Windows'"]
else:
install_requires = []
setuptools.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,
)