setup.py 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. """
  2. Lakesuperior setup script.
  3. Proudly ripped from https://github.com/pypa/sampleproject/blob/master/setup.py
  4. """
  5. import sys
  6. # Always prefer setuptools over distutils
  7. from setuptools import Extension, setup, find_packages
  8. # To use a consistent encoding
  9. from codecs import open
  10. from glob import glob
  11. from os import path
  12. import lakesuperior
  13. # Use this version to build C files from .pyx sources.
  14. CYTHON_VERSION='0.29'
  15. KLEN = 5 # TODO Move somewhere else (config?)
  16. try:
  17. import Cython
  18. from Cython.Build import cythonize
  19. except ImportError:
  20. USE_CYTHON = False
  21. else:
  22. cy_installed_version = Cython.__version__
  23. if cy_installed_version == CYTHON_VERSION:
  24. USE_CYTHON = True
  25. else:
  26. raise ImportError(
  27. f'The installed Cython version ({cy_installed_version}) '
  28. f'does not match the required version ({CYTHON_VERSION}). '
  29. 'Please insstall the exact required Cython version in order to '
  30. 'generate the C sources.'
  31. )
  32. # ``pytest_runner`` is referenced in ``setup_requires``.
  33. # See https://github.com/pytest-dev/pytest-runner#conditional-requirement
  34. needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
  35. pytest_runner = ['pytest-runner'] if needs_pytest else []
  36. # Get the long description from the README file
  37. readme_fpath = path.join(path.dirname(lakesuperior.basedir), 'README.rst')
  38. with open(readme_fpath, encoding='utf-8') as f:
  39. long_description = f.read()
  40. # Extensions directory.
  41. coll_src_dir = path.join('ext', 'collections-c', 'src')
  42. lmdb_src_dir = path.join('ext', 'lmdb', 'libraries', 'liblmdb')
  43. spookyhash_src_dir = path.join('ext', 'spookyhash', 'src')
  44. tpl_src_dir = path.join('ext', 'tpl', 'src')
  45. include_dirs = [
  46. path.join(coll_src_dir, 'include'),
  47. lmdb_src_dir,
  48. spookyhash_src_dir,
  49. tpl_src_dir,
  50. ]
  51. cy_include_dir = path.join('lakesuperior', 'cy_include')
  52. if USE_CYTHON:
  53. print(f'Using Cython {CYTHON_VERSION} to generate C extensions.')
  54. include_dirs.append(cy_include_dir)
  55. ext = 'pyx'
  56. pxdext = 'pxd'
  57. else:
  58. print(f'Cython {CYTHON_VERSION} not found. Using provided C extensions.')
  59. ext = pxdext = 'c'
  60. extensions = [
  61. Extension(
  62. 'lakesuperior.model.base',
  63. [
  64. path.join(tpl_src_dir, 'tpl.c'),
  65. path.join('lakesuperior', 'model', f'base.{ext}'),
  66. ],
  67. include_dirs=include_dirs,
  68. #extra_compile_args=['-fopenmp'],
  69. #extra_link_args=['-fopenmp']
  70. ),
  71. Extension(
  72. 'lakesuperior.model.structures.*',
  73. [
  74. path.join(spookyhash_src_dir, 'spookyhash.c'),
  75. path.join(coll_src_dir, 'common.c'),
  76. path.join(coll_src_dir, 'array.c'),
  77. path.join(coll_src_dir, 'hashset.c'),
  78. path.join(coll_src_dir, 'hashtable.c'),
  79. path.join('lakesuperior', 'model', 'structures', f'*.{ext}'),
  80. ],
  81. include_dirs=include_dirs,
  82. #extra_compile_args=['-fopenmp'],
  83. #extra_link_args=['-fopenmp']
  84. ),
  85. Extension(
  86. 'lakesuperior.model.graph.*',
  87. [
  88. path.join(tpl_src_dir, 'tpl.c'),
  89. path.join(spookyhash_src_dir, 'spookyhash.c'),
  90. path.join(coll_src_dir, 'common.c'),
  91. path.join(coll_src_dir, 'array.c'),
  92. path.join(coll_src_dir, 'hashset.c'),
  93. path.join(coll_src_dir, 'hashtable.c'),
  94. path.join('lakesuperior', 'model', 'graph', f'*.{ext}'),
  95. ],
  96. include_dirs=include_dirs,
  97. extra_compile_args=['-fopenmp'],
  98. extra_link_args=['-fopenmp']
  99. ),
  100. Extension(
  101. 'lakesuperior.store.base_lmdb_store',
  102. [
  103. path.join(tpl_src_dir, 'tpl.c'),
  104. path.join(lmdb_src_dir, 'mdb.c'),
  105. path.join(lmdb_src_dir, 'midl.c'),
  106. path.join('lakesuperior', 'store', f'base_lmdb_store.{ext}'),
  107. ],
  108. include_dirs=include_dirs,
  109. ),
  110. Extension(
  111. 'lakesuperior.store.ldp_rs.lmdb_triplestore',
  112. [
  113. path.join(lmdb_src_dir, 'mdb.c'),
  114. path.join(lmdb_src_dir, 'midl.c'),
  115. path.join(
  116. 'lakesuperior', 'store', 'ldp_rs', f'lmdb_triplestore.{ext}'),
  117. ],
  118. include_dirs=include_dirs,
  119. extra_compile_args=['-fopenmp'],
  120. extra_link_args=['-fopenmp']
  121. ),
  122. ]
  123. # Great reference read about dependency management:
  124. # https://caremad.io/posts/2013/07/setup-vs-requirement/
  125. install_requires = [
  126. 'CoilMQ',
  127. 'Flask',
  128. 'HiYaPyCo',
  129. 'PyYAML',
  130. 'arrow',
  131. 'click',
  132. 'click-log',
  133. 'cymem',
  134. 'gevent',
  135. 'gunicorn',
  136. 'rdflib',
  137. 'rdflib-jsonld',
  138. 'requests',
  139. 'requests-toolbelt',
  140. 'sphinx-rtd-theme',
  141. 'stomp.py',
  142. ]
  143. if USE_CYTHON:
  144. extensions = cythonize(
  145. extensions,
  146. include_path=include_dirs,
  147. annotate=True,
  148. compiler_directives={
  149. 'language_level': 3,
  150. 'boundscheck': False,
  151. 'wraparound': False,
  152. 'profile': True,
  153. }
  154. )
  155. setup(
  156. name='lakesuperior',
  157. version=lakesuperior.release,
  158. description='A Linked Data Platform repository sever.',
  159. long_description=long_description,
  160. url='https://lakesuperior.readthedocs.io',
  161. author='Stefano Cossu <@scossu>',
  162. #author_email='',
  163. license='Apache License Version 2.0',
  164. ext_modules=extensions,
  165. # https://pypi.python.org/pypi?%3Aaction=list_classifiers
  166. classifiers=[
  167. 'Development Status :: 3 - Alpha',
  168. 'Environment :: Console',
  169. 'Environment :: Web Environment',
  170. 'Framework :: Flask',
  171. 'Intended Audience :: Developers',
  172. 'Intended Audience :: Information Technology',
  173. 'Intended Audience :: Science/Research',
  174. 'License :: OSI Approved :: Apache Software License',
  175. 'Natural Language :: English',
  176. 'Operating System :: MacOS',
  177. 'Operating System :: Microsoft :: Windows',
  178. 'Operating System :: POSIX :: Linux',
  179. 'Programming Language :: Python :: 3',
  180. 'Programming Language :: Python :: 3.6',
  181. 'Programming Language :: Python :: 3.7',
  182. 'Topic :: Database :: Database Engines/Servers',
  183. ],
  184. keywords='repository linked-data',
  185. python_requires='~=3.6',
  186. packages=find_packages(exclude=['contrib', 'docs', 'tests']),
  187. install_requires=install_requires,
  188. setup_requires=[
  189. 'setuptools>=18.0',
  190. ] + pytest_runner,
  191. tests_require=[
  192. 'Pillow',
  193. 'numpy',
  194. 'pytest',
  195. 'pytest-flask',
  196. ],
  197. include_package_data=True,
  198. #extras_require={},
  199. #package_data={
  200. #},
  201. #data_files=[],
  202. entry_points={
  203. 'console_scripts': [
  204. 'lsup-admin=lakesuperior.lsup_admin:admin',
  205. 'lsup-benchmark=lakesuperior.util.benchmark:run',
  206. 'lsup-profiler=lakesuperior.profiler:run',
  207. 'lsup-server=lakesuperior.server:run',
  208. ],
  209. },
  210. scripts=['bin/fcrepo'],
  211. project_urls={
  212. 'Source Code': 'https://github.com/scossu/lakesuperior/',
  213. 'Documentation': 'https://lakesuperior.readthedocs.io',
  214. 'Discussion': 'https://groups.google.com/forum/#!forum/lakesuperior',
  215. 'Bug Reports': 'https://github.com/scossu/lakesuperior/issues',
  216. }
  217. )