Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Path: code / psage / setup.py
Views: 184601
1
from distutils.core import setup
2
from Cython.Build import cythonize
3
4
setup(
5
ext_modules = cythonize(["helloworld.pyx",
6
#"number_fields/sqrt5/prime.pyx",
7
#"ellcurve/lseries/aplist_sqrt5.pyx",
8
#"ellcurve/lseries/fast_twist.pyx",
9
#"ellcurve/lseries/helper.pyx",
10
"ellcurve/lseries/sqrt5.pyx",
11
])
12
)
13
14