-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 883 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
30
from setuptools import find_namespace_packages, setup
DESCRIPTION = 'Python client library for the LMNT API'
AUTHOR = 'LMNT, Inc.'
AUTHOR_EMAIL = '[email protected]'
URL = 'https://github.com/lmnt-com/lmnt-python'
LICENSE = 'Apache 2.0'
KEYWORDS = ['speech tts ai ml genai']
CLASSIFIERS = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
]
setup(name='lmnt',
description=DESCRIPTION,
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
keywords=KEYWORDS,
packages=find_namespace_packages('src'),
package_dir={'': 'src'},
install_requires=[
'aiohttp ~= 3.8'
],
classifiers=CLASSIFIERS)