annotate lib/patchablegraph/setup.py @ 527:8616faa55bbc

move project url resolution to pip install time Ignore-this: fec8a1c4203bab891115008439b205b6
author drewp@bigasterisk.com
date Tue, 23 Apr 2019 02:13:44 -0700
parents f159080c3cb4
children 416cc380bcb1
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',
522
f159080c3cb4 release 0.4.0
drewp@bigasterisk.com
parents: 521
diff changeset
5 version='0.4.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',
527
8616faa55bbc move project url resolution to pip install time
drewp@bigasterisk.com
parents: 522
diff changeset
12 'rdfdb >= 0.8.0',
517
243b5af89842 packaging and readme
drewp@bigasterisk.com
parents: 516
diff changeset
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
495f573af4f4 make patchablegraph release
drewp@bigasterisk.com
parents:
diff changeset
16 ],
522
f159080c3cb4 release 0.4.0
drewp@bigasterisk.com
parents: 521
diff changeset
17 url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-0.4.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 )