cognito-oauthtools/setup.py
Joseph Manley 130ae3f76e Push additional files
Update Workflow

Update Workflow

Update Workflow

Update Workflow

Update Workflow
2020-01-25 01:42:15 -05:00

63 lines
1.9 KiB
Python

import re
from os import path
from setuptools import setup
from codecs import open
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
def read(*parts):
return open(path.join(here, *parts), 'r').read()
def find_version(*file_paths):
version_file = read(*file_paths)
version_match = re.search(r"^version = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
setup(
name='cognito-oauthtools',
version=find_version('cognito_oauthtools','__init__.py'),
description='Simple AWS Cognito client to simplify implementation',
long_description=long_description,
long_description_content_type="text/markdown",
# The project's main homepage.
url='https://github.com/josephbmanley/cognito-oauthtools',
# Author details
author='Joseph Manley',
author_email='j@cloudsumu.com',
# Choose your license
license='GPL3.0',
# See https://pypi.org/classifiers/
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
keywords='AWS,Cognito,OAuth',
packages=["cognito_oauthtools"],
install_requires=['requests'],
package_data={},
entry_points={}
)