-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
23 lines (22 loc) · 810 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
import os
import setuptools
from setuptools import find_packages
setuptools.setup(
name='multiple_datasets',
version=open('version.txt', 'r').read().strip() if os.path.isfile('version.txt') else '0.0.1',
author='Bayartsogt Yadamsuren',
author_email='[email protected]',
description='',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
url='https://github.com/bayartsogt-ya/whisper-multiple-hf-datasets',
classifiers=[
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7',
],
package_dir={'': 'src'},
packages=find_packages(where='src', exclude=['tests']),
install_requires=[],
python_requires='>=3.7',
)