-
Notifications
You must be signed in to change notification settings - Fork 70
/
setup.py
39 lines (38 loc) · 1.11 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
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='cloudprint',
version='0.14',
description='Google cloud print proxy for linux/OSX',
long_description=open('README.rst').read(),
author='Jason Michalski',
author_email='[email protected]',
url='https://github.com/armooo/cloudprint',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Topic :: Printing',
'License :: OSI Approved :: GNU General Public License (GPL)',
],
packages=find_packages(exclude=['ez_setup']),
entry_points={
'console_scripts': [
'cloudprint = cloudprint.cloudprint:main',
],
},
install_requires=[
'configargparse',
'pycups',
'requests >= 2.7.0',
],
extras_require={
'daemon': ['python-daemon >= 2.0.0'],
},
)