view lib/standardservice/setup.py @ 1394:b27d0f9a00ef

pinode use prettyerrorhandler Ignore-this: 20e96013aa365fd180774ffb5b558245 darcs-hash:84bf69f522301afb1a79cb6184ae92a0fdd54017
author drewp <drewp@bigasterisk.com>
date Sat, 06 Jul 2019 00:49:12 -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',
)