annotate lib/patchablegraph/setup.py @ 705:394c57fcb0bb

release 0.8.0 Ignore-this: 41fefe049a851c39dc7226c081350bd8
author drewp@bigasterisk.com
date Mon, 03 Feb 2020 00:51:26 -0800
parents 703c86e08932
children 41af3ebccdf9
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',
705
394c57fcb0bb release 0.8.0
drewp@bigasterisk.com
parents: 593
diff changeset
5 version='0.8.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 ],
705
394c57fcb0bb release 0.8.0
drewp@bigasterisk.com
parents: 593
diff changeset
17 url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-0.8.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 )