123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- """
- LAKEsuperior setup script.
- Proudly ripped from https://github.com/pypa/sampleproject/blob/master/setup.py
- """
- import sys
- from setuptools import setup, find_packages
- from codecs import open
- from glob import glob
- from os import path
- here = path.abspath(path.dirname(__file__))
- needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
- pytest_runner = ['pytest-runner'] if needs_pytest else []
- with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
- long_description = f.read()
- setup(
- name='lakesuperior',
- version='1.0.0a11',
- description='A Linked Data Platform repository sever.',
- long_description=long_description,
- long_description_content_type='text/x-rst; charset=UTF-8',
- url='https://lakesuperior.readthedocs.io',
- author='Stefano Cossu <@scossu>',
-
- license='Apache License Version 2.0',
-
- classifiers=[
- 'Development Status :: 3 - Alpha',
- 'Environment :: Console',
- 'Environment :: Web Environment',
- 'Framework :: Flask',
- 'Intended Audience :: Developers',
- 'Intended Audience :: Information Technology',
- 'Intended Audience :: Science/Research',
- 'License :: OSI Approved :: Apache Software License',
- 'Natural Language :: English',
- 'Operating System :: MacOS',
- 'Operating System :: Microsoft :: Windows',
- 'Operating System :: POSIX :: Linux',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- 'Topic :: Database :: Database Engines/Servers',
- ],
- keywords='repository linked-data',
- python_requires='~=3.5',
- packages=find_packages(exclude=['contrib', 'docs', 'tests']),
-
-
- install_requires=[
- 'CoilMQ',
- 'Flask',
- 'HiYaPyCo',
- 'PyYAML',
- 'arrow',
- 'click',
- 'click-log',
- 'gevent',
- 'gunicorn',
- 'lmdb',
- 'rdflib',
- 'requests',
- 'requests-toolbelt',
- 'sphinx-rtd-theme',
- 'stomp.py',
- ],
- setup_requires=[] + pytest_runner,
- tests_require=[
- 'Pillow',
- 'numpy',
- 'pytest',
- 'pytest-flask',
- ],
- include_package_data=True,
-
-
-
- data_files=[
- ('data/bootstrap', glob('data/bootstrap/*')),
- ],
- entry_points={
- 'console_scripts': [
- 'fcrepo=lakesuperior.wsgi:run',
- 'lsup-admin=lakesuperior.lsup_admin:admin',
- 'lsup-benchmark=lakesuperior.util.benchmark:run',
- 'profiler=lakesuperior.profiler:run',
- ],
- },
-
-
-
-
-
-
-
-
-
- project_urls={
- 'Source Code': 'https://github.com/scossu/lakesuperior/',
- 'Documentation': 'https://lakesuperior.readthedocs.io',
- 'Discussion': 'https://groups.google.com/forum/#!forum/lakesuperior',
- 'Bug Reports': 'https://github.com/scossu/lakesuperior/issues',
- }
- )
|