view setup.py @ 69:6b01e1e5859b

drop patches and log, but don't otherwise error, if we're not connected to rdfdb Ignore-this: bc95e8005e78e5d78e061cb6dc73668a
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 01 Jun 2019 20:03:44 +0000
parents a3718b297d16
children 04bd89cd9cf0
line wrap: on
line source

from setuptools import setup, find_packages
 
setup(
    name='rdfdb',
    version='0.18.0',
    packages=find_packages(),
    install_requires=[
        'rdflib',
        'cyclone',
        'mock',
        'treq',
        'rdflib-jsonld',
        'service_identity',
        "autobahn",
        'scales', # use git+http://github.com/drewp/scales.git@master#egg=scales
        ],
    url='https://projects.bigasterisk.com/rdfdb/rdfdb-0.18.0.tar.gz',
    author='Drew Perttula',
    author_email='drewp@bigasterisk.com',
    entry_points={
      'console_scripts': ['rdfdb=rdfdb.service:main'],
    },
 )