view lib/standardservice/setup.py @ 1489:a4fb4cc60ae1

get some iot2 tests going Ignore-this: cdfdf88f445f043aa5aa55f737f6b776 darcs-hash:f0dc8fe99648fd4f7a3870c2b564ae1e4c85fdd9
author drewp <drewp@bigasterisk.com>
date Tue, 21 Jan 2020 23:59:45 -0800
parents c84520084b6f
children
line wrap: on
line source

from setuptools import setup
 
setup(
    name='standardservice',
    version='0.6.0',
    packages=['standardservice'],
    package_dir={'standardservice': ''},
    install_requires=[
        'psutil',
        'twisted',
        'scales', # use git+http://github.com/drewp/scales.git@master#egg=scales
    ],
    url='https://projects.bigasterisk.com/standardservice/standardservice-0.6.0.tar.gz',
    author='Drew Perttula',
    author_email='drewp@bigasterisk.com',
)