view lib/standardservice/setup.py @ 588:79c28fe1b04e

release 0.6.0 Ignore-this: e561ca14b3db890a9a2b996b22fbd959
author drewp@bigasterisk.com
date Thu, 06 Jun 2019 02:30:00 -0700
parents 12ed824faa6c
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',
)