view lib/standardservice/setup.py @ 587:12ed824faa6c

new scalessetup Ignore-this: 6ce94cf72544092fe56b18526336e5c6
author drewp@bigasterisk.com
date Thu, 06 Jun 2019 02:29:18 -0700
parents ae023f60f761
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',
)