-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (30 loc) · 1 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
import setuptools
README = open('README.md').read()
setuptools.setup(
name='easy-thumbnails-rest',
version='1.1.4',
url='https://github.com/modbender/easy-thumbnails-rest',
description='Easy Thumbnails Fields for Django Rest API',
long_description=README,
long_description_content_type='text/markdown',
author='Yashas H R',
author_email='[email protected]',
install_requires=[
'django>=2.2.24',
'djangorestframework>=3.11.1',
'easy-thumbnails>=2.7',
],
python_requires='>=3.5',
platforms=['any'],
packages=setuptools.find_packages(),
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)