Mercurial > code > home > repos > homeauto
annotate lib/patchablegraph/setup.py @ 1698:58f1877780b9
jsonld moved into rdflib 6.0.1
author | drewp@bigasterisk.com |
---|---|
date | Tue, 12 Oct 2021 20:18:54 -0700 |
parents | 02f876016f27 |
children | 411f5e013201 |
rev | line source |
---|---|
517 | 1 from setuptools import setup |
514 | 2 |
3 setup( | |
4 name='patchablegraph', | |
713 | 5 version='0.11.0', |
514 | 6 packages=['patchablegraph'], |
7 package_dir={'patchablegraph': ''}, | |
517 | 8 install_requires=[ |
514 | 9 'cyclone', |
10 'twisted', | |
1698 | 11 'rdflib >= 6.0.1', |
527
8616faa55bbc
move project url resolution to pip install time
drewp@bigasterisk.com
parents:
522
diff
changeset
|
12 'rdfdb >= 0.8.0', |
517 | 13 'scales @ git+http://github.com/drewp/scales.git@448d59fb491b7631877528e7695a93553bfaaa93', |
527
8616faa55bbc
move project url resolution to pip install time
drewp@bigasterisk.com
parents:
522
diff
changeset
|
14 'cycloneerr', |
8616faa55bbc
move project url resolution to pip install time
drewp@bigasterisk.com
parents:
522
diff
changeset
|
15 'twisted_sse >= 0.3.0', |
514 | 16 ], |
713 | 17 url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-0.11.0.tar.gz', |
514 | 18 author='Drew Perttula', |
19 author_email='drewp@bigasterisk.com', | |
20 ) |