forked from nucleic/atom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
79 lines (70 loc) · 2.39 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
#------------------------------------------------------------------------------
# Copyright (c) 2013, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#------------------------------------------------------------------------------
from setuptools import setup, find_packages, Extension
from setuptools.command.build_ext import build_ext
ext_modules = [
Extension(
'atom.catom',
[
'atom/src/atomlist.cpp',
'atom/src/atomref.cpp',
'atom/src/catom.cpp',
'atom/src/catommodule.cpp',
'atom/src/defaultvaluebehavior.cpp',
'atom/src/delattrbehavior.cpp',
'atom/src/enumtypes.cpp',
'atom/src/eventbinder.cpp',
'atom/src/getattrbehavior.cpp',
'atom/src/member.cpp',
'atom/src/memberchange.cpp',
'atom/src/methodwrapper.cpp',
'atom/src/observerpool.cpp',
'atom/src/postgetattrbehavior.cpp',
'atom/src/postsetattrbehavior.cpp',
'atom/src/postvalidatebehavior.cpp',
'atom/src/propertyhelper.cpp',
'atom/src/setattrbehavior.cpp',
'atom/src/signalconnector.cpp',
'atom/src/validatebehavior.cpp',
],
language='c++',
),
Extension(
'atom.datastructures.sortedmap',
['atom/src/sortedmap.cpp'],
language='c++',
),
]
class BuildExt(build_ext):
""" A custom build extension for adding compiler-specific options.
"""
c_opts = {
'msvc': ['/EHsc']
}
def initialize_options(self):
build_ext.initialize_options(self)
self.debug = False
def build_extensions(self):
ct = self.compiler.compiler_type
opts = self.c_opts.get(ct, [])
for ext in self.extensions:
ext.extra_compile_args = opts
build_ext.build_extensions(self)
setup(
name='atom',
version='0.3.11',
author='The Nucleic Development Team',
author_email='[email protected]',
url='https://github.com/nucleic/atom',
description='Memory efficient Python objects',
long_description=open('README.rst').read(),
install_requires=['future'],
packages=find_packages(exclude='tests'),
ext_modules=ext_modules,
cmdclass={'build_ext': BuildExt},
)