-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
27 lines (23 loc) · 889 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
with open('README.rst', 'r') as f:
README = f.read()
setup(name='aiompd',
version='0.4.0',
description='MPD (Music Player Daemon) client for asyncio',
long_description=README,
classifiers=[
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: System :: Networking",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
],
author='Alexander Zelenyak',
author_email='zzz.sochi@gmail.com',
url='https://github.com/zzzsochi/aiompd',
keywords=['mpd', 'asyncio'],
packages=find_packages()
)