Mercurial > code > home > repos > patchablegraph
annotate setup.py @ 20:8ec07d997cd5
declare labelnames on metrics
author | drewp@bigasterisk.com |
---|---|
date | Wed, 24 Nov 2021 20:29:32 -0800 |
parents | d8d40f5e1bf8 |
children | fee5fd30b58c |
rev | line source |
---|---|
0 | 1 from setuptools import setup |
2 | |
3 setup( | |
4 name='patchablegraph', | |
18 | 5 version='0.18.0', |
0 | 6 packages=['patchablegraph'], |
7 package_dir={'patchablegraph': ''}, | |
8 install_requires=[ | |
9 'cyclone', | |
10 'twisted', | |
11 'rdflib >= 6.0.1', | |
12 'rdfdb >= 0.8.0', | |
3 | 13 'prometheus_client', |
0 | 14 'cycloneerr', |
15 'twisted_sse >= 0.3.0', | |
16 ], | |
18 | 17 url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-0.18.0.tar.gz', |
0 | 18 author='Drew Perttula', |
19 author_email='drewp@bigasterisk.com', | |
20 ) |