-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 964 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import pathlib
import setuptools
setuptools.setup(
name="SoraDBlite",
version="2.0.20",
description="SoraDBlite is a Python class designed to simplify interactions with MongoDB databases, the operation of SoraDBlite is similar to the pymongo. It is also a lite version of pymongo.Added Sora AI integration for error detection and solution.",
long_description=pathlib.Path("README.md").read_text(encoding='utf-8'),
long_description_content_type="text/markdown",
url="https://amalnath.netlify.app/",
author="Amal Nath H",
author_email="amalnath0600@gmail.com",
license="GNU GENERAL PUBLIC LICENSE",
project_urls={
"Documentation": "https://soradblite-docs.netlify.app/",
"source": "https://github.com/MrTG-CodeBot/SoraDBlite",
},
python_requires= ">=3.8.0",
install_requires=["pymongo", "google-generativeai", "requests"],
packages=setuptools.find_packages(),
include_package_data=True
)