-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
executable file
·43 lines (37 loc) · 1.14 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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from cloudplaya import VERSION
PACKAGE_NAME = 'cloudplaya'
setup(name=PACKAGE_NAME,
version=VERSION,
license='MIT',
description='Python module and command line client for '
'Amazon Cloud Player',
entry_points={
'console_scripts': [
'cloudplaya = cloudplaya.main:main',
],
},
packages=find_packages(),
install_requires=[
'mechanize>=0.2.5',
'requests>=0.13.2',
],
maintainer='Christian Hammond',
maintainer_email='[email protected]',
url='http://github.com/chipx86/cloudplaya/',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
]
)