-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
49 lines (46 loc) · 1.71 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
41
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-
__author__ = 'luckydonald'
from setuptools import setup, find_packages
from Pon3Downloader import VERSION
long_description = """Downloads Music from pony.fm and eqbeat.org, filling in all the advanced ID3 meta tags, like lyrics and cover art."""
main_package = 'Pon3Downloader'
packages = [main_package]
for package in find_packages(where=main_package):
packages.append(main_package + "." + package)
# http://peterdowns.com/posts/first-time-with-pypi.html
# $ python setup.py register -r pypi
# $ python setup.py sdist upload -r pypi
setup(
name="pon3downloader",
packages=packages,
version=VERSION,
author="luckydonald",
author_email="code@luckydonald.de",
description=long_description,
license="GPLv3+",
keywords="download, music, ponies, DJ Pon3, pony.fm, eqbeats.org, Equestrian Beats, mp3, cover art images, "
"lyrics, ID3, pony, littlepip is best pony",
url="https://github.com/luckydonald/pon3downloader/",
install_requires=["DictObject", "requests", "eyeD3", "python-magic", "luckydonald-utils", 'usersettings',
'beautifulsoup4'],
long_description=long_description,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Capture/Recording",
"Topic :: System :: Archiving",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
],
entry_points={
'console_scripts': [
'pon3dl = Pon3Downloader.__main__:main',
]},
)