view lib/standardservice/setup.py @ 1428:56e07d3f0930

frontdoor configs; move device class timing to greplin stats Ignore-this: f32495ae0d3b4c6f50fe1ba46c57abcd darcs-hash:c8b6f8460b858868837dc9c98f844528531fe98c
author drewp <drewp@bigasterisk.com>
date Thu, 08 Aug 2019 16:50:14 -0700
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',
)