forked from armooo/cloudprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 983 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
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import os.path
setup(
name='cloudprint',
version='0.5',
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',
],
},
)