Пример #1
0
              libraries = ['m']
#              include_dirs = numpy_include_dirs),
     )
]

ext_modules.extend(sehlen_extensions)

# I just had a long chat with Robert Bradshaw (a Cython dev), and he
# told me the following functionality -- turning an Extension with
# Cython code into one without -- along with proper dependency
# checking, is now included in the latest development version of
# Cython (Nov 2, 2010).  It's supposed to be a rewrite he did of the
# code in the Sage library.  Hence once that gets released, we should
# switch to using it here.

build_system.cythonize(ext_modules)

build_system.setup(
    name = 'psage',
    version = "2015.1.0",
    description = "PSAGE: Software for Arithmetic Geometry",
    author = 'William Stein',
    author_email = '*****@*****.**',
    url = 'http://purple.sagemath.org',
    license = 'GPL v2+',
    packages = ['psage',
                'psage.ellcurve',
                'psage.ellcurve.lseries',
                'psage.functions',
#                'psage.ellff',
Пример #2
0
                  sources=[
                      'psage/libs/smalljac/wrapper%s.pyx' % g,
                      'psage/libs/smalljac/wrapper_g%s.c' % g
                  ],
                  libraries=['gmp', 'm'])
    ext_modules.append(e)

# I just had a long chat with Robert Bradshaw (a Cython dev), and he
# told me the following functionality -- turning an Extension with
# Cython code into one without -- along with proper dependency
# checking, is now included in the latest development version of
# Cython (Nov 2, 2010).  It's supposed to be a rewrite he did of the
# code in the Sage library.  Hence once that gets released, we should
# switch to using it here.

build_system.cythonize(ext_modules)

build_system.setup(
    name='psage',
    version="2011.01.06",
    description="PSAGE: Software for Arithmetic Geometry",
    author='William Stein',
    author_email='*****@*****.**',
    url='http://purple.sagemath.org',
    license='GPL v2+',
    packages=[
        'psage', 'psage.ellcurve', 'psage.ellcurve.lseries', 'psage.ellff',
        'psage.function_fields', 'psage.lmfdb', 'psage.lmfdb.ellcurves',
        'psage.lmfdb.ellcurves.sqrt5', 'psage.modform',
        'psage.modform.fourier_expansion_framework',
        'psage.modform.fourier_expansion_framework.gradedexpansions',