view lib/standardservice/setup.py @ 1390:2e0c4ba9d7cf

new scalessetup Ignore-this: 6ce94cf72544092fe56b18526336e5c6 darcs-hash:7585fa52be5f09b2bd5696098f55184f996e5299
author drewp <drewp@bigasterisk.com>
date Thu, 06 Jun 2019 02:29:18 -0700
parents 12d6ce6f6bc1
children 79c28fe1b04e
line wrap: on
line source

from setuptools import setup
 
setup(
    name='standardservice',
    version='0.5.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.5.0.tar.gz',
    author='Drew Perttula',
    author_email='drewp@bigasterisk.com',
)