setup.py 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  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(
  133. extensions,
  134. include_path=include_dirs,
  135. annotate=True,
  136. compiler_directives={
  137. 'language_level': 3,
  138. 'boundscheck': False,
  139. 'wraparound': False,
  140. 'profile': True,
  141. }
  142. )
  143. setup(
  144. name='lakesuperior',
  145. version=lakesuperior.release,
  146. description='A Linked Data Platform repository sever.',
  147. long_description=long_description,
  148. url='https://lakesuperior.readthedocs.io',
  149. author='Stefano Cossu <@scossu>',
  150. #author_email='',
  151. license='Apache License Version 2.0',
  152. ext_modules=extensions,
  153. # https://pypi.python.org/pypi?%3Aaction=list_classifiers
  154. classifiers=[
  155. 'Development Status :: 3 - Alpha',
  156. 'Environment :: Console',
  157. 'Environment :: Web Environment',
  158. 'Framework :: Flask',
  159. 'Intended Audience :: Developers',
  160. 'Intended Audience :: Information Technology',
  161. 'Intended Audience :: Science/Research',
  162. 'License :: OSI Approved :: Apache Software License',
  163. 'Natural Language :: English',
  164. 'Operating System :: MacOS',
  165. 'Operating System :: Microsoft :: Windows',
  166. 'Operating System :: POSIX :: Linux',
  167. 'Programming Language :: Python :: 3',
  168. 'Programming Language :: Python :: 3.6',
  169. 'Programming Language :: Python :: 3.7',
  170. 'Topic :: Database :: Database Engines/Servers',
  171. ],
  172. keywords='repository linked-data',
  173. python_requires='~=3.6',
  174. packages=find_packages(exclude=['contrib', 'docs', 'tests']),
  175. # Great reference read about dependency management:
  176. # https://caremad.io/posts/2013/07/setup-vs-requirement/
  177. install_requires=[
  178. 'CoilMQ',
  179. 'Flask',
  180. 'HiYaPyCo',
  181. 'PyYAML',
  182. 'arrow',
  183. 'cchardet',
  184. 'click',
  185. 'click-log',
  186. 'gevent',
  187. 'gunicorn',
  188. 'rdflib',
  189. 'rdflib-jsonld',
  190. 'requests',
  191. 'requests-toolbelt',
  192. 'sphinx-rtd-theme',
  193. 'stomp.py',
  194. ],
  195. setup_requires=[
  196. 'setuptools>=18.0',
  197. ] + pytest_runner,
  198. tests_require=[
  199. 'Pillow',
  200. 'numpy',
  201. 'pytest',
  202. 'pytest-flask',
  203. ],
  204. include_package_data=True,
  205. #extras_require={},
  206. #package_data={
  207. #},
  208. #data_files=[],
  209. entry_points={
  210. 'console_scripts': [
  211. 'lsup-admin=lakesuperior.lsup_admin:admin',
  212. 'lsup-benchmark=lakesuperior.util.benchmark:run',
  213. 'lsup-profiler=lakesuperior.profiler:run',
  214. 'lsup-server=lakesuperior.server:run',
  215. ],
  216. },
  217. scripts=['bin/fcrepo'],
  218. project_urls={
  219. 'Source Code': 'https://github.com/scossu/lakesuperior/',
  220. 'Documentation': 'https://lakesuperior.readthedocs.io',
  221. 'Discussion': 'https://groups.google.com/forum/#!forum/lakesuperior',
  222. 'Bug Reports': 'https://github.com/scossu/lakesuperior/issues',
  223. }
  224. )