-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 888 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="traefisy",
version="0.1.2",
description="A simple and efficient CLI tool for easy Traefik configuration.",
author="sion",
author_email="[email protected]",
url="https://github.com/sion99/traefisy",
packages=find_packages(),
keywords=[
"traefik",
"traefik configuration"
],
include_package_data=True,
install_requires=[
"typer[all]",
"rich",
"sqlalchemy",
"pyyaml",
"ruamel.yaml"
],
entry_points={
"console_scripts": [
"traefisy=traefisy.main:app",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6', # 최소 지원하는 Python 버전
)