first commit

This commit is contained in:
Stanislav Vishnevskiy
2013-10-06 16:12:35 -07:00
parent e2a9177a7d
commit dab98d2f86
9 changed files with 476 additions and 1 deletions

27
setup.py Normal file
View File

@@ -0,0 +1,27 @@
# coding=utf-8
from setuptools import setup, find_packages
DESCRIPTION = 'Python Mumble for Humans™'
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
VERSION = '0.1.0'
setup(
name='mumble',
version=VERSION,
packages=find_packages(),
author='Stanislav Vishnevskiy',
author_email='vishnevskiy@gmail.com',
url='https://github.com/vishnevskiy/mumblepy',
license='MIT',
include_package_data=True,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=[],
platforms=['any'],
classifiers=[],
test_suite='tests',
)