-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (48 loc) · 1.64 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
from setuptools import setup, find_namespace_packages
def readme():
with open("README.md", "r", encoding="utf-8") as f:
return f.read()
setup(
name="python-privatbank-client",
version="0.1.0",
author="Viacheslav Lisovoi",
author_email="viacheslav.lisovoi@onix-systems.com",
description="This module is designed for quick interaction with the privatbank API.",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/Onix-Systems/python-privatbank-client/tree/v0.1.0",
packages=find_namespace_packages(where="privatbank_api_client"),
package_dir={"": "privatbank_api_client"},
package_data={
"privat_config": ["*.py"],
"async_privat": ["*.py"],
"sync_privat": ["*.py"],
"drf_privat": ["*.py"],
"fastapi_privat": ["*.py"],
},
install_requires=["python-dotenv==1.0.0"],
extras_require={
"http": ["requests>=2.25.1"],
"aio": ["aiohttp==3.9.1"],
"drf": ["Django>=4,<5", "djangorestframework", "requests>=2.25.1"],
"fastapi": ["fastapi[all]", "sqlalchemy", "psycopg2", "asyncpg"],
"all": [
"Django>=4,<5",
"djangorestframework",
"requests>=2.25.1",
"fastapi[all]",
"aiohttp==3.9.1",
"sqlalchemy",
"psycopg2",
"asyncpg",
"alembic",
],
},
classifiers=[
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="files speedfiles ",
python_requires=">=3.6",
)