setup.py 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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.store.base_lmdb_store',
  55. [
  56. path.join(lmdb_src_dir, 'mdb.c'),
  57. path.join(lmdb_src_dir, 'midl.c'),
  58. path.join('lakesuperior', 'store', f'base_lmdb_store.{ext}'),
  59. ],
  60. include_dirs=include_dirs,
  61. ),
  62. Extension(
  63. 'lakesuperior.store.ldp_rs.term',
  64. [
  65. path.join(tpl_src_dir, 'tpl.c'),
  66. path.join('lakesuperior', 'store', 'ldp_rs', f'term.{ext}'),
  67. ],
  68. include_dirs=include_dirs,
  69. extra_compile_args=['-fopenmp'],
  70. extra_link_args=['-fopenmp']
  71. ),
  72. Extension(
  73. 'lakesuperior.store.ldp_rs.triple',
  74. [
  75. path.join('lakesuperior', 'store', 'ldp_rs', f'triple.{ext}'),
  76. ],
  77. include_dirs=include_dirs,
  78. extra_compile_args=['-fopenmp'],
  79. extra_link_args=['-fopenmp']
  80. ),
  81. Extension(
  82. 'lakesuperior.store.ldp_rs.keyset',
  83. [
  84. path.join('lakesuperior', 'store', 'ldp_rs', f'keyset.{ext}'),
  85. ],
  86. include_dirs=include_dirs,
  87. #extra_compile_args=['-fopenmp'],
  88. #extra_link_args=['-fopenmp']
  89. ),
  90. Extension(
  91. 'lakesuperior.store.ldp_rs.lmdb_triplestore',
  92. [
  93. path.join(lmdb_src_dir, 'mdb.c'),
  94. path.join(lmdb_src_dir, 'midl.c'),
  95. path.join(
  96. 'lakesuperior', 'store', 'ldp_rs', f'lmdb_triplestore.{ext}'),
  97. ],
  98. include_dirs=include_dirs,
  99. extra_compile_args=['-fopenmp'],
  100. extra_link_args=['-fopenmp']
  101. ),
  102. Extension(
  103. 'lakesuperior.util.hash',
  104. [
  105. path.join(spookyhash_src_dir, 'spookyhash.c'),
  106. path.join('lakesuperior', 'util', f'hash.{ext}'),
  107. ],
  108. include_dirs=include_dirs,
  109. ),
  110. Extension(
  111. 'lakesuperior.store.ldp_rs.graph',
  112. [
  113. path.join(calg_src_dir, 'set.c'),
  114. path.join('lakesuperior', 'store', 'ldp_rs', f'graph.{ext}'),
  115. ],
  116. include_dirs=include_dirs,
  117. extra_compile_args=['-fopenmp'],
  118. extra_link_args=['-fopenmp']
  119. ),
  120. # For testing.
  121. #Extension(
  122. # '*',
  123. # [
  124. # #path.join(tpl_src_dir, 'tpl.c'),
  125. # path.join(
  126. # path.dirname(lakesuperior.basedir), 'sandbox', f'*.{ext}'),
  127. # ],
  128. # include_dirs=include_dirs,
  129. #),
  130. ]
  131. if USE_CYTHON:
  132. extensions = cythonize(extensions, include_path=include_dirs, compiler_directives={
  133. 'language_level': 3,
  134. 'boundscheck': False,
  135. 'wraparound': False,
  136. 'profile': True,
  137. })
  138. setup(
  139. name='lakesuperior',
  140. version=lakesuperior.release,
  141. description='A Linked Data Platform repository sever.',
  142. long_description=long_description,
  143. url='https://lakesuperior.readthedocs.io',
  144. author='Stefano Cossu <@scossu>',
  145. #author_email='',
  146. license='Apache License Version 2.0',
  147. ext_modules=extensions,
  148. # https://pypi.python.org/pypi?%3Aaction=list_classifiers
  149. classifiers=[
  150. 'Development Status :: 3 - Alpha',
  151. 'Environment :: Console',
  152. 'Environment :: Web Environment',
  153. 'Framework :: Flask',
  154. 'Intended Audience :: Developers',
  155. 'Intended Audience :: Information Technology',
  156. 'Intended Audience :: Science/Research',
  157. 'License :: OSI Approved :: Apache Software License',
  158. 'Natural Language :: English',
  159. 'Operating System :: MacOS',
  160. 'Operating System :: Microsoft :: Windows',
  161. 'Operating System :: POSIX :: Linux',
  162. 'Programming Language :: Python :: 3',
  163. 'Programming Language :: Python :: 3.6',
  164. 'Programming Language :: Python :: 3.7',
  165. 'Topic :: Database :: Database Engines/Servers',
  166. ],
  167. keywords='repository linked-data',
  168. python_requires='~=3.6',
  169. packages=find_packages(exclude=['contrib', 'docs', 'tests']),
  170. # Great reference read about dependency management:
  171. # https://caremad.io/posts/2013/07/setup-vs-requirement/
  172. install_requires=[
  173. 'CoilMQ',
  174. 'Flask',
  175. 'HiYaPyCo',
  176. 'PyYAML',
  177. 'arrow',
  178. 'cchardet',
  179. 'click',
  180. 'click-log',
  181. 'gevent',
  182. 'gunicorn',
  183. 'rdflib',
  184. 'rdflib-jsonld',
  185. 'requests',
  186. 'requests-toolbelt',
  187. 'sphinx-rtd-theme',
  188. 'stomp.py',
  189. ],
  190. setup_requires=[
  191. 'setuptools>=18.0',
  192. ] + pytest_runner,
  193. tests_require=[
  194. 'Pillow',
  195. 'numpy',
  196. 'pytest',
  197. 'pytest-flask',
  198. ],
  199. include_package_data=True,
  200. #extras_require={},
  201. #package_data={
  202. #},
  203. #data_files=[],
  204. entry_points={
  205. 'console_scripts': [
  206. 'lsup-admin=lakesuperior.lsup_admin:admin',
  207. 'lsup-benchmark=lakesuperior.util.benchmark:run',
  208. 'lsup-profiler=lakesuperior.profiler:run',
  209. 'lsup-server=lakesuperior.server:run',
  210. ],
  211. },
  212. scripts=['bin/fcrepo'],
  213. project_urls={
  214. 'Source Code': 'https://github.com/scossu/lakesuperior/',
  215. 'Documentation': 'https://lakesuperior.readthedocs.io',
  216. 'Discussion': 'https://groups.google.com/forum/#!forum/lakesuperior',
  217. 'Bug Reports': 'https://github.com/scossu/lakesuperior/issues',
  218. }
  219. )