Mercurial > code > home > repos > rdfdb
view setup.py @ 57:bcaba1620128
sent connectionid to clients for them to display, for debugging
Ignore-this: b746e24b517e68ab77f3e293888e0613
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Thu, 30 May 2019 08:18:57 +0000 |
parents | c81bd512d587 |
children | 263e1de4fee6 |
line wrap: on
line source
from setuptools import setup, find_packages setup( name='rdfdb', version='0.16.0', packages=find_packages(), install_requires=[ 'rdflib', 'cyclone', 'mock', 'treq', 'rdflib-jsonld', 'service_identity', 'scales', # use git+http://github.com/drewp/scales.git@master#egg=scales ], url='https://projects.bigasterisk.com/rdfdb/rdfdb-0.16.0.tar.gz', author='Drew Perttula', author_email='drewp@bigasterisk.com', entry_points={ 'console_scripts': ['rdfdb=rdfdb.service:main'], }, )