forked from speech-recognition123/Speech-to-Text
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
56 lines (44 loc) · 1.51 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"""The setup script."""
from setuptools import setup, find_packages
import os
import sys
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system('rm -vrf ./build ./dist ./*.pyc ./*.pyo ./*.pyd ./*.tgz ./ *.egg-info `find -type d -name __pycache__`')
with open('README.md') as readme_file:
readme = readme_file.read()
with open('requirements.txt') as req:
req_list = req.readlines()
req_list = [sd.replace('\n', '') for sd in req_list]
requirements = req_list
test_requirements = ['pytest>=3']
setup(
author="Group-2",
email="[email protected]",
python_requires='>=3.7',
classifiers=[
'Development Status :: 2 - Pre-Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
description="A Repository structure for all your project",
install_requires=requirements,
long_description=readme,
include_package_data=True,
keywords='scripts',
name='scripts',
packages=find_packages(include=['scripts', 'scripts.*', 'sql',
'data', 'dashboard', 'scripts/applications',
'tests', 'notebooks', 'models']),
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/week4-SpeechRecognition/Speech-to-Text',
version='1.0.0',
zip_safe=False,
)