-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
149 lines (124 loc) · 4.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import platform
import os
import inspect
import subprocess
from setuptools import setup, find_packages
from distutils.extension import Extension
from Cython.Build import cythonize
def git_version():
def _minimal_ext_cmd(cmd):
# construct minimal environment
env = {}
for k in ['SYSTEMROOT', 'PATH']:
v = os.environ.get(k)
if v is not None:
env[k] = v
# LANGUAGE is used on win32
env['LANGUAGE'] = 'C'
env['LANG'] = 'C'
env['LC_ALL'] = 'C'
out = subprocess.Popen(cmd, stdout=subprocess.PIPE, env=env).communicate()[0]
return out
try:
out = _minimal_ext_cmd(['git', 'rev-parse', 'HEAD'])
git_revision = out.strip().decode('ascii')
except OSError:
git_revision = "Unknown"
return git_revision
def get_version_info(version, is_released):
fullversion = version
if not is_released:
git_revision = git_version()
fullversion += '.dev0+' + git_revision[:7]
return fullversion
def write_version_py(version, is_released, filename='composites/version.py'):
fullversion = get_version_info(version, is_released)
with open("./composites/version.py", "wb") as f:
f.write(('__version__ = "%s"\n' % fullversion).encode())
return fullversion
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
setupdir = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
return open(os.path.join(setupdir, fname)).read()
#_____________________________________________________________________________
install_requires = [
"numpy",
]
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: End Users/Desktop
Topic :: Scientific/Engineering
Topic :: Education
Topic :: Software Development
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: Microsoft :: Windows
Operating System :: Unix
Operating System :: POSIX :: BSD
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: BSD License
"""
is_released = True
version = '0.7.1'
fullversion = write_version_py(version, is_released)
data_files = [('', [
'README.md',
'LICENSE',
'composites/version.py',
])]
package_data = {
'composites': ['*.pxd', '*.pyx'],
'': ['tests/*.*'],
}
if platform.system() == 'Windows':
compile_args = ['/openmp']
link_args = []
elif platform.system() == 'Linux':
compile_args = ['-fopenmp', '-static', '-static-libgcc', '-static-libstdc++']
link_args = ['-fopenmp', '-static-libgcc', '-static-libstdc++']
else: # MAC-OS
compile_args = []
link_args = []
include_dirs = [
]
extensions = [
Extension('composites.core',
sources=[
'./composites/core.pyx',
],
include_dirs=include_dirs,
extra_compile_args=compile_args,
extra_link_args=link_args,
language='c++'),
]
ext_modules = cythonize(extensions,
compiler_directives={'linetrace': True},
language_level='3',
)
s = setup(
name = "composites",
version = fullversion,
author = "Saullo G. P. Castro",
author_email = "[email protected]",
description = ("Methods for analysis and design of composites"),
long_description = read('README.md'),
long_description_content_type = 'text/markdown',
license = "3-Clause BSD",
keywords = "mechanics composite materials composites shell classical first-order laminated plate theory",
url = "https://github.com/saullocastro/composites",
package_data = package_data,
data_files = data_files,
classifiers = [_f for _f in CLASSIFIERS.split('\n') if _f],
install_requires = install_requires,
ext_modules = ext_modules,
packages = find_packages(),
)