mirror of
https://github.com/nikdoof/mumblepy.git
synced 2025-12-13 06:22:17 +00:00
29 lines
651 B
Python
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',
|
|
)
|