forked from bradreardon/pial
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 870 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
from setuptools import setup, find_packages
setup(
name='pial',
version='1.0',
description='Image manipulations for a variety of Python imaging libraries.',
long_description=open('README.rst').read(),
author='Gregory Taylor and Mikko Hellsing',
author_email='gtaylor@duointeractive.com',
license='BSD',
url='https://github.com/duointeractive/pial',
packages=find_packages(),
platforms='any',
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Multimedia :: Graphics',
],
)