-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.1 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.1 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
"""
Python API Toolkit - Package Setup.
Build and distribution configuration for the API toolkit package.
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="python-api-toolkit",
version="1.0.0",
author="jy02140251",
description="Professional Python toolkit for building robust APIs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jy02140251/python-api-toolkit",
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"pyjwt>=2.8.0",
"redis>=5.0.0",
"pydantic>=2.5.0",
],
extras_require={
"dev": [
"pytest>=7.4.0",
"pytest-asyncio>=0.23.0",
"coverage>=7.4.0",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
],
)