-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1007 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 1007 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
32
33
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="ezyapi",
version="1.7.7",
author="3xhaust, nck90",
author_email="s2424@e-mirim.hs.kr, s2460@e-mirim.hs.kr",
description="쉬운 API 생성 및 프로젝트 관리를 위한 프레임워크",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/3x-haust/Python_Ezy_API",
keywords=['3xhaust', 'nck90', 'python api', 'ezy api', 'backend', 'cli'],
license_file='MIT',
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'ezy = ezycli:main'
],
},
python_requires='>=3.11',
install_requires=[
'requests>=2.32.3',
'tqdm>=4.67.1',
]
)