Mercurial > code > home > repos > homeauto
annotate lib/patchablegraph/setup.py @ 1562:c2ed44ed1e3c dependabot/pip/service/collector/twisted-19.7.0
Bump twisted from 19.2.0 to 19.7.0 in /service/collector
Bumps [twisted](https://github.com/twisted/twisted) from 19.2.0 to 19.7.0.
- [Release notes](https://github.com/twisted/twisted/releases)
- [Changelog](https://github.com/twisted/twisted/blob/trunk/NEWS.rst)
- [Commits](https://github.com/twisted/twisted/compare/twisted-19.2.0...twisted-19.7.0)
Signed-off-by: dependabot[bot] <support@github.com>
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
---|---|
date | Fri, 14 Feb 2020 10:01:26 +0000 |
parents | 78ee4d27ea87 |
children | 58f1877780b9 |
rev | line source |
---|---|
1320 | 1 from setuptools import setup |
1317 | 2 |
3 setup( | |
4 name='patchablegraph', | |
1514 | 5 version='0.11.0', |
1317 | 6 packages=['patchablegraph'], |
7 package_dir={'patchablegraph': ''}, | |
1320 | 8 install_requires=[ |
1317 | 9 'cyclone', |
10 'twisted', | |
1320 | 11 'rdflib-jsonld >= 0.3', |
1330
cf57c5d3c890
move project url resolution to pip install time
drewp <drewp@bigasterisk.com>
parents:
1325
diff
changeset
|
12 'rdfdb >= 0.8.0', |
1320 | 13 'scales @ git+http://github.com/drewp/scales.git@448d59fb491b7631877528e7695a93553bfaaa93', |
1330
cf57c5d3c890
move project url resolution to pip install time
drewp <drewp@bigasterisk.com>
parents:
1325
diff
changeset
|
14 'cycloneerr', |
cf57c5d3c890
move project url resolution to pip install time
drewp <drewp@bigasterisk.com>
parents:
1325
diff
changeset
|
15 'twisted_sse >= 0.3.0', |
1317 | 16 ], |
1514 | 17 url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-0.11.0.tar.gz', |
1317 | 18 author='Drew Perttula', |
19 author_email='drewp@bigasterisk.com', | |
20 ) |