-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (48 loc) · 1.59 KB
/
setup.py
File metadata and controls
52 lines (48 loc) · 1.59 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
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") as f:
return f.read()
setup(
name="python-monobank-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 monobank API.",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://gitlab.onix.ua/onix-systems/python-internal-mono",
packages=find_namespace_packages(where="monobank_api_client"),
package_dir={"": "monobank_api_client"},
package_data={
"mono_config": ["*.py"],
"async_mono": ["*.py"],
"sync_mono": ["*.py"],
"drf_mono": ["*.py"],
"fastapi_mono": ["*.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",
)