-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.55 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.55 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pyapiq",
version="0.2.1",
author="nessshon",
description="PyAPIq is a modern Python toolkit for building both synchronous and asynchronous API clients with clean, minimal code and full type safety.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nessshon/pyapiq",
project_urls={
"Source": "https://github.com/nessshon/pyapiq",
"Issues": "https://github.com/nessshon/pyapiq/issues",
},
packages=setuptools.find_packages(include=["pyapiq", "pyapiq.*"]),
package_data={"pyapiq": ["py.typed"]},
python_requires=">=3.10",
install_requires=[
"aiohttp>=3.7.0",
"pydantic>=2.0,<3.0",
"requests>=2.30.0,<3.0",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
"Environment :: Console",
],
keywords="api client async sync http aiohttp requests pydantic",
license="MIT",
)