forked from alejandroandreu/flask-minio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.19 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
"""
Flask-Minio
-------------
Adds Minio support to your Flask application
"""
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='Flask-Minio',
version='0.1.2',
url='https://github.com/alejandroandreu/flask-minio',
license='BSD',
author='Alejandro Andreu',
author_email='[email protected]',
description='Adds Minio support to your Flask application',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
zip_safe=False,
platforms='any',
install_requires=[
'Flask',
'minio'
],
tests_require=[
'pytest>=3.8.1',
'Flask',
'minio'
],
setup_requires=[
'pytest-runner>=4.2'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)