annotate lib/patchablegraph/setup.py @ 516:108e02248dd8

fix requires line Ignore-this: 8114de3869e4da7d4eb26281d5c0826b
author drewp@bigasterisk.com
date Mon, 22 Apr 2019 23:34:42 -0700
parents 8e73f6e80242
children 243b5af89842
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
514
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
1 from distutils.core import setup
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',
515
8e73f6e80242 release 0.1.0
drewp@bigasterisk.com
parents: 514
diff changeset
5 version='0.1.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': ''},
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
8 requires=[
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
9 'cyclone',
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
10 'twisted',
516
108e02248dd8 fix requires line
drewp@bigasterisk.com
parents: 515
diff changeset
11 'rdflib-jsonld(>=0.3)',
514
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
12 'git+http://github.com/drewp/scales.git@448d59fb491b7631877528e7695a93553bfaaa93#egg=scales',
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
13
515
8e73f6e80242 release 0.1.0
drewp@bigasterisk.com
parents: 514
diff changeset
14 'https://projects.bigasterisk.com/rdfdb/rdfdb-0.1.0.tar.gz',
514
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
15 'https://projects.bigasterisk.com/cycloneerr/cycloneerr-0.1.0.tar.gz',
515
8e73f6e80242 release 0.1.0
drewp@bigasterisk.com
parents: 514
diff changeset
16 'https://projects.bigasterisk.com/twisted_sse/twisted_sse-0.1.0.tar.gz',
514
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
17 ],
515
8e73f6e80242 release 0.1.0
drewp@bigasterisk.com
parents: 514
diff changeset
18 url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-0.1.0.tar.gz',
514
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
19 author='Drew Perttula',
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
20 author_email='drewp@bigasterisk.com',
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
21 )