Skip to content

Commit

Permalink
update setup.py (#5)
Browse files Browse the repository at this point in the history
* update setup.py
  • Loading branch information
pskun authored Nov 15, 2022
1 parent df11824 commit 089d7cd
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
from setuptools import setup, find_packages

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name="gts_engine_client",
version="0.1.0",
version="0.1.1",
description="gts_engine_client",
long_description="client sdk for git_engine development suite",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT Licence",
url="https://idea.edu.cn",
url="https://github.com/IDEA-CCNL/GTS-Engine-Client",
author="pankunhao",
author_email="[email protected]",

Expand All @@ -19,4 +23,10 @@
],

scripts=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)

0 comments on commit 089d7cd

Please sign in to comment.