setup.py 6.4 KB

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