forked from tobgu/pyrsistent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
87 lines (78 loc) · 3.2 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
import os
from setuptools import setup, Extension
import sys
import platform
import warnings
import codecs
from distutils.command.build_ext import build_ext
from distutils.errors import CCompilerError
from distutils.errors import DistutilsPlatformError, DistutilsExecError
from _pyrsistent_version import __version__
readme_path = os.path.join(os.path.dirname(__file__), 'README.rst')
with codecs.open(readme_path, encoding='utf8') as f:
readme = f.read()
extensions = []
if platform.python_implementation() == 'CPython':
extensions = [Extension('pvectorc', sources=['pvectorcmodule.c'])]
class custom_build_ext(build_ext):
"""Allow C extension building to fail."""
warning_message = """
********************************************************************************
WARNING: Could not build the %s.
Pyrsistent will still work but performance may be degraded.
%s
********************************************************************************
"""
def run(self):
try:
build_ext.run(self)
except (CCompilerError, DistutilsExecError, DistutilsPlatformError):
e = sys.exc_info()[1]
sys.stdout.write('%s\n' % str(e))
warnings.warn(self.warning_message % ("Extension modules",
"There was an issue with "
"your platform configuration"
" - see above."))
def build_extension(self, ext):
name = ext.name
try:
build_ext.build_extension(self, ext)
except (CCompilerError, DistutilsExecError, DistutilsPlatformError):
e = sys.exc_info()[1]
sys.stdout.write('%s\n' % str(e))
warnings.warn(self.warning_message % ("The %s extension "
"module" % (name,),
"The output above "
"this warning shows how "
"the compilation "
"failed."))
setup(
name='pyrsistent',
version=__version__,
description='Persistent/Functional/Immutable data structures',
long_description=readme,
author='Tobias Gustafsson',
author_email='[email protected]',
url='http://github.com/tobgu/pyrsistent/',
license='MIT',
py_modules=['_pyrsistent_version'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
],
test_suite='tests',
tests_require=['pytest','hypothesis'],
scripts=[],
setup_requires=['pytest-runner'],
ext_modules=extensions,
cmdclass={'build_ext': custom_build_ext},
install_requires=['six'],
packages=['pyrsistent']
)