Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Amitminer authored May 28, 2024
1 parent 437b34c commit 0517fdf
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,22 @@

from setuptools import setup, find_packages

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

setup(
name="aiodatabase",
version="0.1.7",
version="1.0.0",
license="MIT",
install_requires=["PyYAML", "aiomysql", "aiosqlite"],
packages=find_packages(),
package_data={
"": ["resources/sqlite.sql", "resources/config.yml"],
},
include_package_data=True,
description="AioDatabase is a simple database abstraction layer for SQLite and MySQL.",
long_description=long_description,
long_description_content_type="text/markdown",
author="AmitxD",
url="https://github.com/Amitminer/AioDatabase",
classifiers=[
Expand Down

0 comments on commit 0517fdf

Please sign in to comment.