forked from xarg/django-stdimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 950 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
setup(
name='django-stdimage',
version='0.2.2',
description='Django Standarized Image Field',
author='Garcia Marc, Steven Klass',
author_email='[email protected], [email protected]',
url='https://github.com/pivotal-energy-solutions/django-stdimage',
license='Apache License (2.0)',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
],
packages=find_packages(exclude=['tests', 'tests.*']),
package_data={'stdimage': ['static/js/*.js', 'templates/stdimage/*.html']},
include_package_data=True,
)