-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
executable file
·129 lines (107 loc) · 4.99 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
# To install locally: python setup.py build && python setup.py install
# (If there are problems with installation of the documentation, the
# egg file may be out of sync and will need to be manually deleted
# - see error message for details of the corrupted zip file. )
#
# To push a version through to pip.
# - Make sure it installs correctly locally as above
# - Update the version information in this file
# - python setup.py sdist upload -r pypitest # for the test version
# - python setup.py sdist upload -r pypi # for the real version
# With twine:
# - python setup.py sdist
# - twine upload dist/*
#
# (see http://peterdowns.com/posts/first-time-with-pypi.html)
from setuptools import setup
from numpy.distutils.core import setup, Extension
# try:
# from distutils.command import bdist_conda
# except ImportError:
# pass
from os import path
import io
import os
import subprocess
import platform
link_args = ['-Wl,-rpath,"$ORIGIN"']
if "Windows" in platform.system():
link_args = ["-static"]
if "Darwin" in platform.system():
link_args = ['-Wl,-rpath, "@loader_path"']
# in development set version to none and ...
PYPI_VERSION = "2.3.3" # Note: don't add any dashes if you want to use conda, use b1 not .b1
# Return the git revision as a string (from numpy)
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', '--short', 'HEAD'])
GIT_REVISION = out.strip().decode('ascii')
except OSError:
GIT_REVISION = "Unknown"
return GIT_REVISION
if PYPI_VERSION is None:
PYPI_VERSION = git_version()
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# What works on github does not work elsewhere
long_description = long_description.replace('(stripy/Notebooks','(https://github.com/underworldcode/stripy/blob/master/stripy/Notebooks')
# print(long_description)
# interface for Renka's algorithm 772 fortran code
ext1 = Extension(name = 'stripy._stripack',
sources = ['src/stripack.pyf','src/stripack.f90'],
extra_link_args=link_args)
ext2 = Extension(name = 'stripy._tripack',
sources = ['src/tripack.pyf', 'src/tripack.f90'],
extra_link_args=link_args)
ext3 = Extension(name = 'stripy._srfpack',
sources = ['src/srfpack.pyf', 'src/srfpack.f'],
extra_link_args=link_args)
ext4 = Extension(name = 'stripy._ssrfpack',
sources = ['src/ssrfpack.pyf', 'src/ssrfpack.f'],
extra_link_args=link_args)
ext5 = Extension(name = 'stripy._fortran',
sources = ['src/stripyf.pyf', 'src/stripyf.f90'],
extra_link_args=link_args)
if __name__ == "__main__":
setup(name = 'stripy',
author = "Louis Moresi",
author_email = "louis.moresi@anu.edu.au",
url = "https://github.com/underworldcode/stripy",
version = PYPI_VERSION,
description = "Python interface to TRIPACK and STRIPACK fortran code for triangulation/interpolation in Cartesian coordinates and on a sphere",
long_description = long_description,
long_description_content_type='text/markdown',
ext_modules = [ext1, ext2, ext3, ext4, ext5],
install_requires = ['numpy>=1.16.0'],
packages = ['stripy'],
package_data = {'stripy': ['Notebooks/*ipynb', # Worked Examples is not currently used
'Notebooks/CartesianTriangulations/*ipynb',
'Notebooks/SphericalTriangulations/*ipynb',
'Notebooks/Data/*'] },
include_package_data = True,
classifiers = ['Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
]
)