setup.py 6.4 KB

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