-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 872 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='scribemi',
python_requires='>=3.10.0',
version='1.3.0',
description="Library to manage MI files in Scribe's platform",
long_description=readme(),
url='https://github.com/ScribeLabsAI/ScribeMi',
long_description_content_type='text/markdown',
author='Ailin Venerus',
author_email='[email protected]',
packages=['scribemi'],
install_requires=['requests', 'scribeauth', 'aws_requests_auth'],
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',
'Typing :: Typed'
],
)