We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd6f022 commit 5caf1c4Copy full SHA for 5caf1c4
setup.py
@@ -1,10 +1,15 @@
1
# setup.py
2
from setuptools import setup, find_packages
3
4
+with open("README.md", "r", encoding="utf-8") as fh:
5
+ long_description = fh.read()
6
+
7
setup(
8
name="lang2sql", # 패키지 이름
- version="0.1.0", # 버전
9
+ version="0.1.1", # 버전
10
description="Lang2SQL - Query Generator for Data Warehouse",
11
+ long_description=long_description,
12
+ long_description_content_type="text/markdown",
13
author="ehddnr301",
14
packages=find_packages(), # my_package를 자동으로 찾음
15
install_requires=[
0 commit comments