annotate lib/patchablegraph/setup.py @ 521:0ea3b983e66f

releaser was updating versions on inappropriate lines Ignore-this: f288d547d02f0e0f2bd8d45fb6d98ccb
author drewp@bigasterisk.com
date Tue, 23 Apr 2019 00:57:03 -0700
parents a349896c4de3
children f159080c3cb4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
517
243b5af89842 packaging and readme
drewp@bigasterisk.com
parents: 516
diff changeset
1 from setuptools import setup
514
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
2
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
3 setup(
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
4 name='patchablegraph',
520
a349896c4de3 release 0.3.0
drewp@bigasterisk.com
parents: 518
diff changeset
5 version='0.3.0',
514
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
6 packages=['patchablegraph'],
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
7 package_dir={'patchablegraph': ''},
517
243b5af89842 packaging and readme
drewp@bigasterisk.com
parents: 516
diff changeset
8 install_requires=[
514
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
9 'cyclone',
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
10 'twisted',
517
243b5af89842 packaging and readme
drewp@bigasterisk.com
parents: 516
diff changeset
11 'rdflib-jsonld >= 0.3',
521
0ea3b983e66f releaser was updating versions on inappropriate lines
drewp@bigasterisk.com
parents: 520
diff changeset
12 'rdfdb @ https://projects.bigasterisk.com/rdfdb/rdfdb-0.8.0.tar.gz',
517
243b5af89842 packaging and readme
drewp@bigasterisk.com
parents: 516
diff changeset
13 'scales @ git+http://github.com/drewp/scales.git@448d59fb491b7631877528e7695a93553bfaaa93',
521
0ea3b983e66f releaser was updating versions on inappropriate lines
drewp@bigasterisk.com
parents: 520
diff changeset
14 'cycloneerr @ https://projects.bigasterisk.com/cycloneerr/cycloneerr-0.1.0.tar.gz',
520
a349896c4de3 release 0.3.0
drewp@bigasterisk.com
parents: 518
diff changeset
15 'twisted_sse @ https://projects.bigasterisk.com/twisted_sse/twisted_sse-0.3.0.tar.gz',
514
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
16 ],
520
a349896c4de3 release 0.3.0
drewp@bigasterisk.com
parents: 518
diff changeset
17 url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-0.3.0.tar.gz',
514
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
18 author='Drew Perttula',
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
19 author_email='drewp@bigasterisk.com',
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
20 )