This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PSMBot-VA-pip-Package/setup.py
Puranjay Savar Mattas d5940b3fbd First commit
2021-01-18 15:48:05 +05:30

35 lines
954 B
Python

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name = "PSMBot",
version = "1.0",
scripts = ["PSMBot"],
author = "Puranjay Savar Mattas",
author_email = "puranjaysavarmattas@gmail.com",
description = "A package to help you easily make a Virtual Assistant",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "",
home_page = "",
license = "Apache License 2.0",
platform = "Any",
packages = setuptools.find_packages(),
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: Apache License 2.0",
"Operating System :: OS Independent",
],
install_requires=[
'speechrecognition',
'pyttsx3',
'pywhatkit',
'wikipedia',
'pyjokes',
'wolframalpha',
'datetime',
],
python_requires='>=3.8',
)