Mercurial > code > home > repos > homeauto
annotate lib/patchablegraph/setup.py @ 704:74ad667f8c5b
reformat
Ignore-this: e1fe14c4b973c3c1fc2714b988ecc7c8
author | drewp@bigasterisk.com |
---|---|
date | Mon, 03 Feb 2020 00:51:18 -0800 |
parents | 703c86e08932 |
children | 394c57fcb0bb |
rev | line source |
---|---|
517 | 1 from setuptools import setup |
514 | 2 |
3 setup( | |
4 name='patchablegraph', | |
593 | 5 version='0.7.0', |
514 | 6 packages=['patchablegraph'], |
7 package_dir={'patchablegraph': ''}, | |
517 | 8 install_requires=[ |
514 | 9 'cyclone', |
10 'twisted', | |
517 | 11 'rdflib-jsonld >= 0.3', |
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 ], |
593 | 17 url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-0.7.0.tar.gz', |
514 | 18 author='Drew Perttula', |
19 author_email='drewp@bigasterisk.com', | |
20 ) |