view lib/standardservice/setup.py @ 604:c24f081195d3

update standardservice. add --dns to all docker runs Ignore-this: 7439dab992e614fa8fa562f4f750e57b
author drewp@bigasterisk.com
date Tue, 23 Jul 2019 10:29:31 -0700
parents 79c28fe1b04e
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',
)