-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (30 loc) · 883 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
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
VERSION = "0.1"
requirements = [
"requests",
"flask",
"flask_restful",
"pillow",
"gunicorn"
]
setup(
name='Image-Processor',
version=VERSION,
url='https://github.com/thec0sm0s/image-processor',
license='MIT',
author='□ | The Cosmos',
author_email='deepakrajko14@gmail.com',
description='An image processing server.',
platforms='any',
install_requires=requirements,
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)