Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92124559
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
Sun, Nov 17, 14:03
Size
686 B
Mime Type
text/x-python
Expires
Tue, Nov 19, 14:03 (2 d)
Engine
blob
Format
Raw Data
Handle
22379361
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