Mercurial > code > home > repos > patchablegraph
annotate setup.py @ 25:e11d407c46f8
rewrite for asyncio and starlette
author | drewp@bigasterisk.com |
---|---|
date | Sat, 23 Apr 2022 23:58:41 -0700 |
parents | fee5fd30b58c |
children | 4668117dcd24 |
rev | line source |
---|---|
0 | 1 from setuptools import setup |
2 | |
3 setup( | |
4 name='patchablegraph', | |
25 | 5 version='1.0.0', |
0 | 6 packages=['patchablegraph'], |
7 package_dir={'patchablegraph': ''}, | |
8 install_requires=[ | |
9 'rdflib >= 6.0.1', | |
10 'rdfdb >= 0.8.0', | |
3 | 11 'prometheus_client', |
25 | 12 'sse_starlette>=0.10.3', |
13 'starlette>=0.19.1' | |
0 | 14 ], |
25 | 15 url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-1.0.0.tar.gz', |
0 | 16 author='Drew Perttula', |
17 author_email='drewp@bigasterisk.com', | |
18 ) |