-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# (c) 2012 Mike Lewis
from setuptools import setup, find_packages
import prism
version = str(prism.__version__)
setup(name=u'prism',
version=version,
author='Mike Lewis',
author_email='[email protected]',
url='http://github.com/mLewisLogic/prism',
description='image/thumbnail processor that stores results in AWS S3',
long_description=open('./readme.md', 'r').read(),
download_url='http://github.com/mLewisLogic/prism/tarball/master',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(),
license='MIT License',
keywords='image thumbnail aws s3',
include_package_data=True,
zip_safe=True,
)