view lib/patchablegraph/setup.py @ 1322:5559febcd368

don't exclude setup.py from the dist (though I mean to exclude it from the package, somehow) Ignore-this: bb2b8b480a9c8627105b36ac60ffa2c8 darcs-hash:eb8f463874827453b2e0a0be55c675502f9daded
author drewp <drewp@bigasterisk.com>
date Tue, 23 Apr 2019 00:52:47 -0700
parents f1c32a6791f0
children a349896c4de3
line wrap: on
line source

from setuptools import setup
 
setup(
    name='patchablegraph',
    version='0.2.0',
    packages=['patchablegraph'],
    package_dir={'patchablegraph': ''},
    install_requires=[
        'cyclone',
        'twisted',
        'rdflib-jsonld >= 0.3',
        'rdfdb @ https://projects.bigasterisk.com/rdfdb/rdfdb-0.2.0.tar.gz',
        'scales @ git+http://github.com/drewp/scales.git@448d59fb491b7631877528e7695a93553bfaaa93',
        'cycloneerr @ https://projects.bigasterisk.com/cycloneerr/cycloneerr-0.2.0.tar.gz',
        'twisted_sse @ https://projects.bigasterisk.com/twisted_sse/twisted_sse-0.2.0.tar.gz',
    ],
    url='https://projects.bigasterisk.com/patchablegraph/patchablegraph-0.2.0.tar.gz',
    author='Drew Perttula',
    author_email='drewp@bigasterisk.com',
)