view setup.py @ 37:9b4c551dddfb

fix registration bug (tried to send bytes to json encoder) Ignore-this: 166816604c34341844b4b4bb0618ff71
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 25 May 2019 23:54:54 +0000
parents fefdf52fc6bc
children b3ae192c05e4
line wrap: on
line source

from setuptools import setup, find_packages
 
setup(
    name='rdfdb',
    version='0.13.0',
    packages=find_packages(),
    install_requires=[
        'rdflib',
        'cyclone',
        'mock',
        'treq',
        'rdflib-jsonld',
        'service_identity',
        ],
    url='https://projects.bigasterisk.com/rdfdb/rdfdb-0.13.0.tar.gz',
    author='Drew Perttula',
    author_email='drewp@bigasterisk.com',
    entry_points={
      'console_scripts': ['rdfdb=rdfdb.service:main'],
    },
 )