forked from koemei/koemei-api-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (22 loc) · 727 Bytes
/
setup.py
File metadata and controls
executable file
·24 lines (22 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name='Koemei API Client',
version='1.0',
description='Koemei Client - search and transcribe',
author='Koemei',
author_email='dev@koemei.com',
url='https://www.koemei.com',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
package_data={'koemei': ['*/*/*/*/*/*']},
license='Apache License 2.0',
keywords='Koemei python transcription captions search video education',
install_requires=[
"requests >=2.0.0",
],
)