view lib/standardservice/setup.py @ 1404:025c91f8baa4

frontwindow display config, move keys out Ignore-this: 1d725d6548558e8cbcba30768c604c9f darcs-hash:0e084d33fda38aa2689131cb5c746bbc202b05af
author drewp <drewp@bigasterisk.com>
date Tue, 23 Jul 2019 10:25:56 -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',
)