-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (31 loc) · 1013 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
28
29
30
31
32
33
34
# -*- coding: utf-8 -*-
from ipodio import __version__
from setuptools import setup, find_packages
setup(
name='ipodio',
version=__version__,
description='iPod command line managing tool',
author='Javier Santacruz',
author_email='javier.santacruz.lc@gmail.com',
url='https://github.com/jvrsantacruz/ipodio',
packages=find_packages(exclude=['spec', 'spec.*']),
install_requires=[
'docopt',
'mp3hash'
],
classifiers=[
'Environment :: Console',
'Operating System :: POSIX',
'Development Status :: 3 - Alpha',
'Topic :: Multimedia :: Sound/Audio',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
platforms=['Unix'],
entry_points={
'console_scripts': ['ipodio = ipodio.cli:main']
}
)