forked from MichalKacprzak99/jarvis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
68 lines (62 loc) · 2.05 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
57
58
59
60
61
62
63
64
65
66
67
68
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
VERSION = '0.1.3'
PACKAGE_NAME = 'jarvis-assistant'
AUTHOR = 'Michał Kacprzak'
AUTHOR_EMAIL = 'michal.kacprzak999@gmail.com'
URL = 'https://github.com/MichalKacprzak99/jarvis'
LICENSE = 'MIT License'
DESCRIPTION = 'Jarvis - Voice Personal Assistant'
LONG_DESCRIPTION = (HERE / "README.md").read_text()
LONG_DESC_TYPE = "text/markdown"
INSTALL_REQUIRES = [
'playsound',
'gTTS',
'requests',
'pyjokes==0.6.0',
'pyttsx3',
'numpy',
'pytemperature',
'wikipedia',
'textblob',
'pymongo',
'nltk',
'SpeechRecognition',
'pyaudio',
'python-dotenv',
]
setup(name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESC_TYPE,
author=AUTHOR,
license=LICENSE,
author_email=AUTHOR_EMAIL,
url=URL,
install_requires=INSTALL_REQUIRES,
python_requires= ">=3.6",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Home Automation",
"Topic :: Education",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Multimedia :: Sound/Audio :: Speech",
],
packages=find_packages(),
project_urls={
'Bug Reports': 'https://github.com/MichalKacprzak99/jarvis/issues',
'Source': 'https://github.com/MichalKacprzak99/jarvis',
},
keywords='python3, jarvis, development, text-to-speech, speech-to-text'
)