view setup.py @ 72:8bf24d5a0d21

shorter debug log on initial graph sync Ignore-this: 9c1d5e4a920c304203924d4ca5a0acf7
author drewp@bigasterisk.com
date Fri, 07 Jun 2019 00:04:09 +0000
parents 8a60c172a14c
children d001fed2be04
line wrap: on
line source

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