Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
# Extra rules from https://github.com/github/gitignore/
# Python rules
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-shm
db.sqlite3-wal
.idea/
.vscode/
*.pyc
*.egg-info
.tool-versions
16 changes: 16 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[build-system]
requires = [
"autopep8==1.5.6",
"ChatterBot==1.1.0",
"opencv-python==4.5.1.48",
"SpeechRecognition==3.8.1",
"matplotlib==3.3.4",
"imageio==2.9.0",
"pyttsx3==2.90",
"text2emotion==0.0.5",
"tensorflow==2.4.1",
"fer==20.1.1",
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
34 changes: 34 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
from setuptools import setup, find_packages

with open('requirements.txt') as f:
requirements = f.readlines()

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='VideoChatBot',
version='0.0.2',
author='Anirudh Vaish',
author_email='anirudhvaish147@gmail.com',
url='https://github.com/avaish1409/VideoChatBot',
description='A library that gives python users an interaction utility that works as a videocall to a bot.',
long_description=long_description,
long_description_content_type="text/markdown",
license='GNU General Public License v3 (GPLv3)',
package_dir={"": "src"},
packages=find_packages(where="src"),
project_urls={
"Bug Tracker": "https://github.com/avaish1409/VideoChatBot/issues",
'Source': 'https://github.com/avaish1409/VideoChatBot'
},
classifiers=[
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'license :: GNU General Public License v3 (GPLv3)'
],
keywords='bot videochatbot videobot chatbot python package git github',
install_requires=requirements,
python_requires=">=3.6",
zip_safe=False
)
File renamed without changes.
File renamed without changes
16 changes: 16 additions & 0 deletions tests/test_simple.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import sys
import os

#PACKAGE_PARENT = '..'
#SCRIPT_DIR = os.path.dirname(os.path.realpath(os.path.join(os.getcwd(), os.path.expanduser(__file__))))
#sys.path.append(os.path.normpath(os.path.join(SCRIPT_DIR, PACKAGE_PARENT)))

from VideoChatBot import vcbot


import pytest
# from ..VideoChatBot import vcbot

def test_main():
temp = vcbot()
assert True