forked from Ketouem/flask-boto3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 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
import pathlib
import pkg_resources
from setuptools import setup
# https://stackoverflow.com/a/59971469
with pathlib.Path('requirements.txt').open() as requirements_txt:
content = '\n'.join(filter(lambda line: not line.startswith('-i '), requirements_txt.read().split('\n')))
install_requires = [
str(requirement) for requirement in pkg_resources.parse_requirements(content)
]
setup(
name='Flask-Boto3',
version='0.10.0',
url='https://github.com/Ketouem/flask-boto3',
license='MIT',
author='Cyril "Ketouem" Thomas',
author_email='[email protected]',
description='Flask extension that ties boto3 to the application',
packages=['flask_boto3'],
zip_safe=False,
include_package_data=True,
test_suite='tests',
install_requires=install_requires,
platforms='any',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)