-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (30 loc) · 990 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
35
import ez_setup
ez_setup.use_setuptools()
import platform
import sys
from setuptools import setup, find_packages
from giraf.version import __version__
entry_points = {}
entry_points['console_scripts'] = ['giraf=giraf.main:main']
setup(
name = 'giraf',
version = __version__,
description = 'API and command line client for imgur.com.',
author = 'Amol Umrale',
author_email = 'babaiscool@gmail.com',
url = 'http://pypi.python.org/pypi/giraf/',
packages = find_packages(),
include_package_data = True,
scripts = ['ez_setup.py'],
entry_points = entry_points,
install_requires = ['imgurpython>=1.1.7', 'redlib>=1.3.0', 'redcmd>=1.1.8', 'enum34'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'
]
)