-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (26 loc) · 966 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
from setuptools import setup, find_packages
setup(
name='django-stw',
version='1.0.1',
description='This application provides templatetags for simplying using Shrink The Web PagePix',
author='Steve Schwarz',
author_email='[email protected]',
url='https://github.com/saschwarz/django-stw',
download_url='https://github.com/saschwarz/django-stw/tarball/1.0.1',
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
keywords=['Django', 'images', 'templatetag'],
include_package_data=True,
zip_safe=False,
install_requires=['setuptools', 'six'],
test_suite="runtests.runtests",
tests_require=['mock']
)