-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
37 lines (35 loc) · 1.09 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
#/usr/bin/env python
import photoprocessor
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(
name='django-photoprocessor',
version=photoprocessor.__version__,
description='Automated image processing for Django.',
author='Jason Kraus',
author_email='[email protected]',
license='BSD',
url='http://github.com/cuker/django-photoprocessor/',
packages=find_packages(exclude=['tests']),
test_suite='tests.setuptest.SetupTestSuite',
tests_require=(
'pep8==1.3.1',
'coverage',
'django',
'Mock',
),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities'
]
)