-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
42 lines (40 loc) · 1.29 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
#
# Lars Jørgen Solberg <[email protected]> 2014
#
from distutils.core import setup
setup(
name='Shellpic',
version='1.6.2',
author='Lars Jørgen Solberg',
author_email='[email protected]',
packages=['shellpic'],
scripts=['bin/shellpic'],
url='https://github.com/larsjsol/shellpic',
license='GPLv3',
description='Display images using escape codes',
long_description=open('README.rst').read(),
install_requires=[
"Pillow >= 2.6",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Artistic Software",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Viewers",
"Topic :: Utilities",
],
)