comparison 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
comparison
equal deleted inserted replaced
24:1eac25669333 25:e11d407c46f8
1 from setuptools import setup 1 from setuptools import setup
2 2
3 setup( 3 setup(
4 name='patchablegraph', 4 name='patchablegraph',
5 version='0.19.0', 5 version='1.0.0',
6 packages=['patchablegraph'], 6 packages=['patchablegraph'],
7 package_dir={'patchablegraph': ''}, 7 package_dir={'patchablegraph': ''},
8 install_requires=[ 8 install_requires=[
9 'cyclone',
10 'twisted',
11 'rdflib >= 6.0.1', 9 'rdflib >= 6.0.1',
12 'rdfdb >= 0.8.0', 10 'rdfdb >= 0.8.0',
13 'prometheus_client', 11 'prometheus_client',
14 'cycloneerr', 12 'sse_starlette>=0.10.3',
15 'twisted_sse >= 0.3.0', 13 'starlette>=0.19.1'
16 ], 14 ],
17 url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-0.19.0.tar.gz', 15 url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-1.0.0.tar.gz',
18 author='Drew Perttula', 16 author='Drew Perttula',
19 author_email='drewp@bigasterisk.com', 17 author_email='drewp@bigasterisk.com',
20 ) 18 )