Files
mumblepy/setup.py

29 lines
651 B
Python

#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
DESCRIPTION = 'Python Mumble for Humans™'
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
from mumble import __version__ as VERSION
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',
)