forked from georgerahul24/MagicForElsa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 746 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(
name="magicForElsa",
packages=["Magic"],
version="1.17",
license="GPLv3+",
description="A package for the personal assistant Elsa",
author="George Rahul",
author_email="georgerahul24@gmail.com",
url="https://github.com/georgerahul24/MagicForElsa",
keywords=["program", "automate", "task", "magic"],
install_requires=["pyttsx3", "win10toast", "PyQt5", "task1", "talk1"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 or later",
"Programming Language :: Python :: 3.9",
],
)