-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
53 lines (51 loc) · 1.56 KB
/
setup.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="peepdb",
version="0.1.4",
author="Evangelos Meklis",
author_email="[email protected]",
description="CLI tool to view database tables fast",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PeepDB-dev/peepdb",
packages=find_packages(),
install_requires=[
"mysql-connector-python>=9.0.0",
"psycopg2-binary>=2.9.9",
"pymysql>=1.1.1",
"cryptography>=43.0.0",
"tabulate>=0.8.9",
"click>=8.0.0",
"mariadb",
"cachetools>=5.5.0",
"keyring>=25.4.1",
"pymongo==4.9.1",
"dnspython==2.6.1"
],
extras_require={
'dev': [
'coverage>=7.6.1',
'pytest>=8.3.2',
'pytest-cov>=5.0.0',
],
'system': ['libmariadb3', 'libmariadb-dev'],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.9",
entry_points={
"console_scripts": [
"peepdb=peepdb.cli:main",
],
},
)