Skip to content

Commit

Permalink
Update .gitignore, README.md, and setup.py for version 0.1.2: add new…
Browse files Browse the repository at this point in the history
… entries to .gitignore, clarify project cloning instructions in README, and enhance setup.py with additional metadata and dependencies.
  • Loading branch information
atorber committed Jan 4, 2025
1 parent 15370b5 commit a1f81b7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ __pycache__/*
.vscode
omt.egg-info/*
.pytest_cache/*
.env
.env
one_man_team.egg-info/*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ omt config set --app-id YOUR_APP_ID --app-secret YOUR_APP_SECRET

![omt-project-init](./docs/images/lark-docs.png)

4. 运行`omt project clone my-project`就可以将你项目文档克隆到本地,之后就可以使用cursor愉快进行项目开发。
4. 运行`omt project clone my-project`就可以将你项目文档克隆到本地项目的dev-docs目录下,之后就可以使用cursor愉快进行项目开发。

![omt-project-init](./docs/images/dev-docs.png)

Expand Down
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,25 @@

setup(
name='one-man-team',
version='0.1.1',
version='0.1.2',
description='One Man Team CLI Tool',
long_description=open('README.md', 'r', encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/atorber/one-man-team',
author='atorber',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click',
'python-dotenv',
'lark-oapi',
'tabulate',
'PyYAML',
],
entry_points={
'console_scripts': [
'omt=cli:cli',
'omt=one_man_team.cli:cli',
],
},
extras_require={
Expand Down

0 comments on commit a1f81b7

Please sign in to comment.