-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 887 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='scribeauth',
python_requires='>=3.10.0',
version='1.2.0',
description="Library to authenticate to Scribe's platform",
long_description=readme(),
url='https://github.com/ScribeLabsAI/ScribeAuth',
long_description_content_type='text/markdown',
author='Ailin Venerus',
author_email='[email protected]',
packages=['scribeauth'],
install_requires=['boto3', 'typing-extensions'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
'Topic :: Security',
'Typing :: Typed'
],
)