-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
35 lines (33 loc) · 1.13 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
# https://stackoverflow.com/a/49837302
try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
from setuptools import setup
# Requirements
install_reqs = parse_requirements('requirements.txt', session='dummy')
reqs = [str(ir.req) for ir in install_reqs]
setup(
name='Flask-Boto3',
version='0.3.2',
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=reqs,
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'
]
)