forked from dbrgn/orochi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.24 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
from setuptools import setup, find_packages
from orochi import meta
readme = io.open('README.rst', mode='r', encoding='utf8').read()
setup(name='orochi',
version=meta.version,
description=meta.description,
author=meta.author,
author_email=meta.author_email,
url='https://github.com/dbrgn/orochi',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
license=meta.license,
keywords='orochi music playlists 8tracks eighttracks mplayer player',
long_description=readme,
install_requires=['requests>=1.2.0,<3'],
entry_points={
'console_scripts': [
'%s = orochi.client:main' % meta.title,
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
'Topic :: Multimedia :: Sound/Audio :: Players',
'Topic :: Terminals',
],
)