-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
57 lines (50 loc) · 1.99 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import os
from setuptools import find_packages, setup
import galleryfield
def read(fname):
# file read function copied from sorl.django-documents project
return open(os.path.join(os.path.dirname(__file__), fname)).read()
install_requires = [
'sorl-thumbnail',
'pillow'
]
setup(
name='django-galleryfield',
version=galleryfield.__version__,
description="Django AJAX upload widget and model field for multiple images, featuring drag & drop uploading, upload progress bar, sortable and croppable image gallery",
long_description_content_type="text/x-rst",
long_description=read('README.rst'),
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='django ajax html5 upload widget images gallery sorting crop progress'
'thumbnails multiple GalleryField admin forms field',
author='Dong Zhuang',
author_email='[email protected]',
url='https://github.com/dzhuang/django-galleryfield',
license='MIT',
packages=find_packages(exclude=['tests', 'demo']),
include_package_data=True,
zip_safe=True,
install_requires=install_requires,
entry_points="""
# -*- Entry points: -*-
""",
)