Skip to content

Commit

Permalink
chore: update package name, URL, and long description content type
Browse files Browse the repository at this point in the history
- Change the package name from "codosdk" to "opssdk"
- Change the URL in the setup to "https://github.com/ss1917/ops_sdk/"
- Add "long_description_content_type" field with the value "text/markdown"

Signed-off-by: ysicing <[email protected]>
  • Loading branch information
ysicing committed Jun 4, 2024
1 parent b370aa5 commit aad952e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

def get_data_files():
data_files = [
('share/doc/codo_sdk', ['README.md'])
('share/doc/ops_sdk', ['README.md'])
]
return data_files

Expand All @@ -45,17 +45,18 @@ def get_install_requires():
]

setup(
name='codosdk',
name='opssdk',
version=VERSION,
description="CODO项目的Python SDK",
packages=['opssdk', 'opssdk.utils', 'websdk2', 'websdk2.apis', 'websdk2.cloud', 'websdk2.utils'],
url='https://github.com/ss1917/codo_sdk/',
url='https://github.com/ss1917/ops_sdk/',
license='GPLv3',
keywords="ops,opencodo,devops",
install_requires=get_install_requires(),
author='shenshuo',
author_email='[email protected]',
long_description='SDK of the operation and maintenance script logs operate',
long_description_content_type='text/markdown',
include_package_data=True,
data_files=get_data_files(),
python_requires=">=3.6",
Expand Down

0 comments on commit aad952e

Please sign in to comment.