-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.06 KB
/
setup.py
File metadata and controls
33 lines (30 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import os
from setuptools import setup, find_packages
# Ensure the README file is read from the correct directory
this_directory = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(this_directory, "README.md")
# Read the README file
with open(readme_path, "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="sqlite_manager",
version="0.1.0",
description="A package for managing SQLite workflows",
long_description=long_description,
long_description_content_type="text/markdown",
author="Thomas Rauter",
author_email="rauterthomas0@gmail.com",
url="https://github.com/Thomas-Rauter/sqlite_query_manager",
license="MIT",
packages=find_packages(),
install_requires=[
"pandas>=2.0.0",
"tqdm>=4.5.0",
],
python_requires=">=3.8", # Minimum Python version
classifiers=[ # Metadata for PyPI
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)