forked from kylemacfarlane/django-cb-thumbnail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 1.2 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'django-cuddlybuddly-thumbnail',
version = '2.4.3',
license = 'BSD',
description = 'A Django app that supplies a template tag to generate ' \
'thumbnails. Specifically designed to be compatible with ' \
'properly implemented Django storage systems, which ' \
'unfortunately most are not.',
long_description = read('README.rst'),
author = 'Kyle MacFarlane',
author_email = '[email protected]',
package_dir = {'': 'src'},
packages = find_packages('src'),
namespace_packages = ['cuddlybuddly'],
include_package_data = True,
zip_safe = False,
install_requires = ['setuptools'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP'
],
)