forked from nucleic/atom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (52 loc) · 1.73 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
#------------------------------------------------------------------------------
# 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
ext_modules = [
Extension(
'atom.catom',
['atom/src/atomlist.cpp',
#'atom/src/atomdict.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/setattrbehavior.cpp',
'atom/src/signalconnector.cpp',
'atom/src/validatebehavior.cpp',
],
language='c++',
),
Extension(
'atom.datastructures.sortedmap',
['atom/src/sortedmap.cpp'],
language='c++',
),
]
setup(
name='atom',
version='0.3.4',
author='The Nucleic Development Team',
author_email='[email protected]',
url='https://github.com/nucleic/atom',
description='Memory efficient Python objects',
long_description=open('README.md').read(),
install_requires=['distribute'],
packages=find_packages(),
ext_modules=ext_modules,
)