-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 969 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 969 Bytes
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
from setuptools import setup, find_packages
setup(
name="data_persistence_repository",
version="0.2.3",
author="vladimir gorea",
author_email="vladimir@smileservices.dev",
description="A repository implementation for data persistence.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url="https://github.com/smileservices/data_persistence_repository",
packages=find_packages(),
install_requires=[
"exceptiongroup==1.2.0",
"greenlet>=3.0.0",
"iniconfig>=2.0.0",
"pluggy",
"psycopg2>=2.9.9",
"SQLAlchemy>=2.0.0",
"SQLAlchemy-Utils>=0.41",
"tomli>=2.0.0",
"typing_extensions>=4.9.0",
"asyncpg>=0.29.0"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)