First commit of umbra

This commit is contained in:
Eldon 2014-01-21 06:41:46 +00:00
commit fdb62be2ba
4 changed files with 93 additions and 0 deletions

21
setup.py Normal file
View file

@ -0,0 +1,21 @@
import setuptools
setuptools.setup(name='umbra',
version='0.1',
description='Google Chrome remote control interface',
url='https://github.com/eldondev/umbra',
author='Eldon Stegall',
author_email='eldon@archive.org',
long_description=open('README.rst').read(),
license='GPL',
packages=['umbra'],
install_requires=['kombu', 'websocket-client','psutil','argparse'],
scripts=['bin/umbra'],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha Development Status',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Archiving',
])