Mercurial > code > home > repos > rdfdb
view setup.py @ 63:a3718b297d16
WIP starting to try a unified websocket between rdfdb and syncedgraph
Ignore-this: 6e59eb9b2fb382f3ca3cbe4bb1ce925
author | drewp@bigasterisk.com |
---|---|
date | Fri, 31 May 2019 06:46:41 +0000 |
parents | 9b46968b8881 |
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'], }, )