-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (47 loc) · 1.55 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
from setuptools import setup
import os
with open(os.path.join(os.path.dirname(__file__), 'README.rst'), 'rt') as readme:
README = readme.read()
setup(
name='django-user-clipboard',
version='0.6.2',
url='https://github.com/IndustriaTech/django-user-clipboard',
description='Clipboard API',
author='Vladimir Rusinov',
author_email='[email protected]',
maintainer='Venelin Stoykov',
maintainer_email='[email protected]',
long_description=README,
install_requires=[
'Pillow',
'django-imagekit',
],
packages=[
'user_clipboard',
'user_clipboard.management',
'user_clipboard.management.commands',
'user_clipboard.migrations',
'user_clipboard.south_migrations',
'user_clipboard.utils',
],
package_data={
'': ['LICENSE', 'README.rst']
},
include_package_data=True,
zip_safe=False,
keywords=['Clipboard', 'Clipboard API', 'File Clipboard', 'Image Clipboard'],
license='The MIT License (MIT)',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP/JSON',
],
)