Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91236326
setup.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 9, 06:02
Size
686 B
Mime Type
text/x-python
Expires
Mon, Nov 11, 06:02 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22226736
Attached To
rCTRACKER ctracker3
setup.py
View Options
from
distutils.core
import
setup
,
Extension
from
Cython.Build
import
cythonize
setup
(
name
=
"writetools module"
,
ext_modules
=
cythonize
([
Extension
(
"tracker.modules.writetools"
,
sources
=
[
"tracker/modules/writetools.pyx"
])
]))
setup
(
name
=
"loop module"
,
ext_modules
=
cythonize
([
Extension
(
"tracker.modules.loop"
,
sources
=
[
"tracker/modules/loop.pyx"
],
libraries
=
[
"m"
])
]))
# Math library
setup
(
name
=
"Cartesian loop module"
,
ext_modules
=
cythonize
([
Extension
(
"tracker.modules.loop_cartesian"
,
sources
=
[
"tracker/modules/loop_cartesian.pyx"
],
libraries
=
[
"m"
])
]))
# Math library
Event Timeline
Log In to Comment