Mercurial > code > home > repos > patchablegraph
annotate setup.py @ 27:2f74ed860ea2
release 1.1.0
author | drewp@bigasterisk.com |
---|---|
date | Sat, 23 Apr 2022 23:58:50 -0700 |
parents | 4668117dcd24 |
children |
rev | line source |
---|---|
0 | 1 from setuptools import setup |
2 | |
3 setup( | |
4 name='patchablegraph', | |
26 | 5 version='1.1.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 ], |
26 | 15 url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-1.1.0.tar.gz', |
0 | 16 author='Drew Perttula', |
17 author_email='drewp@bigasterisk.com', | |
18 ) |