forked from originell/sorl-watermark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 881 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
from setuptools import setup
from setuptools import find_packages
setup(
name='sorl-watermark',
version='0.0.1',
url='https://github.com/originell/sorl-watermark',
author='Luis Nell',
author_email='[email protected]',
packages=find_packages(),
platforms='any',
description='Image based watermarks for sorl-thumbnail',
long_description=open('README.md').read(),
classifiers=[
"Development Status :: 1 - Planning"
"Environment :: Web Environment"
"Framework :: Django"
"Intended Audience :: Developers"
"License :: OSI Approved :: BSD License"
"Operating System :: OS Independent"
"Programming Language :: Python"
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
"Topic :: Multimedia :: Graphics"
],
install_requires=[
'sorl-thumbnail',
],
)