mirror of
https://github.com/nikdoof/mumblepy.git
synced 2025-12-17 11:49:23 +00:00
first commit
This commit is contained in:
27
setup.py
Normal file
27
setup.py
Normal 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',
|
||||
)
|
||||
Reference in New Issue
Block a user