123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- """
- Lakesuperior setup script.
- Proudly ripped from https://github.com/pypa/sampleproject/blob/master/setup.py
- """
- import sys
- # Always prefer setuptools over distutils
- from setuptools import Extension, setup, find_packages
- # To use a consistent encoding
- from codecs import open
- from glob import glob
- from os import path
- import lakesuperior
- # Use this version to build C files from .pyx sources.
- CYTHON_VERSION='0.29.6'
- KLEN = 5 # TODO Move somewhere else (config?)
- try:
- import Cython
- from Cython.Build import cythonize
- except ImportError:
- USE_CYTHON = False
- else:
- cy_installed_version = Cython.__version__
- if cy_installed_version == CYTHON_VERSION:
- USE_CYTHON = True
- else:
- raise ImportError(
- f'The installed Cython version ({cy_installed_version}) '
- f'does not match the required version ({CYTHON_VERSION}). '
- 'Please insstall the exact required Cython version in order to '
- 'generate the C sources.'
- )
- # ``pytest_runner`` is referenced in ``setup_requires``.
- # See https://github.com/pytest-dev/pytest-runner#conditional-requirement
- needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
- pytest_runner = ['pytest-runner'] if needs_pytest else []
- # Get the long description from the README file
- readme_fpath = path.join(path.dirname(lakesuperior.basedir), 'README.rst')
- with open(readme_fpath, encoding='utf-8') as f:
- long_description = f.read()
- # Extensions directory.
- coll_src_dir = path.join('ext', 'collections-c', 'src')
- lmdb_src_dir = path.join('ext', 'lmdb', 'libraries', 'liblmdb')
- spookyhash_src_dir = path.join('ext', 'spookyhash', 'src')
- tpl_src_dir = path.join('ext', 'tpl', 'src')
- include_dirs = [
- path.join(coll_src_dir, 'include'),
- lmdb_src_dir,
- spookyhash_src_dir,
- tpl_src_dir,
- ]
- cy_include_dir = path.join('lakesuperior', 'cy_include')
- if USE_CYTHON:
- print(f'Using Cython {CYTHON_VERSION} to generate C extensions.')
- include_dirs.append(cy_include_dir)
- ext = 'pyx'
- pxdext = 'pxd'
- else:
- print(f'Cython {CYTHON_VERSION} not found. Using provided C extensions.')
- ext = pxdext = 'c'
- extensions = [
- Extension(
- 'lakesuperior.model.base',
- [
- path.join(tpl_src_dir, 'tpl.c'),
- path.join('lakesuperior', 'model', f'base.{ext}'),
- ],
- include_dirs=include_dirs,
- #extra_compile_args=['-fopenmp'],
- #extra_link_args=['-fopenmp']
- ),
- Extension(
- 'lakesuperior.model.structures.*',
- [
- path.join(spookyhash_src_dir, 'spookyhash.c'),
- path.join(coll_src_dir, 'common.c'),
- path.join(coll_src_dir, 'array.c'),
- path.join(coll_src_dir, 'hashtable.c'),
- path.join(coll_src_dir, 'hashset.c'),
- path.join('lakesuperior', 'model', 'structures', f'*.{ext}'),
- ],
- include_dirs=include_dirs,
- #extra_compile_args=['-fopenmp'],
- #extra_link_args=['-fopenmp']
- ),
- Extension(
- 'lakesuperior.store.base_lmdb_store',
- [
- path.join(coll_src_dir, 'common.c'),
- path.join(coll_src_dir, 'array.c'),
- path.join(coll_src_dir, 'hashtable.c'),
- path.join(coll_src_dir, 'hashset.c'),
- path.join(tpl_src_dir, 'tpl.c'),
- path.join(lmdb_src_dir, 'mdb.c'),
- path.join(lmdb_src_dir, 'midl.c'),
- path.join('lakesuperior', 'store', f'base_lmdb_store.{ext}'),
- ],
- include_dirs=include_dirs,
- ),
- Extension(
- 'lakesuperior.model.graph.*',
- [
- path.join(tpl_src_dir, 'tpl.c'),
- path.join(spookyhash_src_dir, 'context.c'),
- path.join(spookyhash_src_dir, 'globals.c'),
- path.join(spookyhash_src_dir, 'spookyhash.c'),
- path.join(coll_src_dir, 'common.c'),
- path.join(coll_src_dir, 'array.c'),
- path.join(coll_src_dir, 'hashtable.c'),
- path.join(coll_src_dir, 'hashset.c'),
- path.join('lakesuperior', 'model', 'graph', f'*.{ext}'),
- ],
- include_dirs=include_dirs,
- #extra_compile_args=['-fopenmp'],
- #extra_link_args=['-fopenmp']
- ),
- Extension(
- 'lakesuperior.store.ldp_rs.lmdb_triplestore',
- [
- path.join(coll_src_dir, 'common.c'),
- path.join(coll_src_dir, 'array.c'),
- path.join(coll_src_dir, 'hashtable.c'),
- path.join(coll_src_dir, 'hashset.c'),
- path.join(lmdb_src_dir, 'mdb.c'),
- path.join(lmdb_src_dir, 'midl.c'),
- path.join(
- 'lakesuperior', 'store', 'ldp_rs', f'lmdb_triplestore.{ext}'),
- ],
- include_dirs=include_dirs,
- extra_compile_args=['-fopenmp'],
- extra_link_args=['-fopenmp']
- ),
- ]
- # Great reference read about dependency management:
- # https://caremad.io/posts/2013/07/setup-vs-requirement/
- install_requires = [
- 'CoilMQ',
- 'Flask',
- 'HiYaPyCo',
- 'PyYAML',
- 'arrow',
- 'click',
- 'click-log',
- 'cymem',
- 'gevent',
- 'gunicorn',
- 'rdflib',
- 'rdflib-jsonld',
- 'requests',
- 'requests-toolbelt',
- 'sphinx-rtd-theme',
- 'stomp.py',
- ]
- if USE_CYTHON:
- extensions = cythonize(
- extensions,
- include_path=include_dirs,
- annotate=True,
- compiler_directives={
- 'language_level': 3,
- 'boundscheck': False,
- 'wraparound': False,
- 'profile': True,
- }
- )
- setup(
- name='lakesuperior',
- version=lakesuperior.release,
- description='A Linked Data Platform repository sever.',
- long_description=long_description,
- url='https://lakesuperior.readthedocs.io',
- author='Stefano Cossu <@scossu>',
- #author_email='',
- license='Apache License Version 2.0',
- ext_modules=extensions,
- # https://pypi.python.org/pypi?%3Aaction=list_classifiers
- classifiers=[
- 'Development Status :: 3 - Alpha',
- 'Environment :: Console',
- 'Environment :: Web Environment',
- 'Framework :: Flask',
- 'Intended Audience :: Developers',
- 'Intended Audience :: Information Technology',
- 'Intended Audience :: Science/Research',
- 'License :: OSI Approved :: Apache Software License',
- 'Natural Language :: English',
- 'Operating System :: MacOS',
- 'Operating System :: Microsoft :: Windows',
- 'Operating System :: POSIX :: Linux',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 3.7',
- 'Topic :: Database :: Database Engines/Servers',
- ],
- keywords='repository linked-data',
- python_requires='~=3.6',
- packages=find_packages(exclude=['contrib', 'docs', 'tests']),
- install_requires=install_requires,
- setup_requires=[
- 'setuptools>=18.0',
- ] + pytest_runner,
- tests_require=[
- 'Pillow',
- 'numpy',
- 'pytest',
- 'pytest-flask',
- ],
- include_package_data=True,
- #extras_require={},
- #package_data={
- #},
- #data_files=[],
- entry_points={
- 'console_scripts': [
- 'lsup-admin=lakesuperior.lsup_admin:admin',
- 'lsup-benchmark=lakesuperior.util.benchmark:run',
- 'lsup-profiler=lakesuperior.profiler:run',
- 'lsup-server=lakesuperior.server:run',
- ],
- },
- scripts=['bin/fcrepo'],
- project_urls={
- 'Source Code': 'https://github.com/scossu/lakesuperior/',
- 'Documentation': 'https://lakesuperior.readthedocs.io',
- 'Discussion': 'https://groups.google.com/forum/#!forum/lakesuperior',
- 'Bug Reports': 'https://github.com/scossu/lakesuperior/issues',
- }
- )
|