Skip to content

Commit

Permalink
调整文件夹结构
Browse files Browse the repository at this point in the history
  • Loading branch information
jackylvm committed Sep 21, 2021
1 parent 714d9ea commit e3cb968
Show file tree
Hide file tree
Showing 21 changed files with 22 additions and 3 deletions.
15 changes: 12 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
from setuptools import setup
from setuptools import setup, find_packages

with open('README.md', encoding='utf8') as f:
LONG_DESCRIPTION = f.read()

setup(
name='kbengine_tips',
version='1.2.0',
packages=[''],
package_dir={"": "src"},
packages=find_packages(where="src"),
package_data={
".": ["*.MD"],
},
url='https://github.com/jackylvm/kbengine_tips',
license='GPL 3.0',
author='jacky',
author_email='[email protected]',
description='KBEngine编码提示'
description='KBEngine编码提示',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown'
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions src/kbengine_tips/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# File Created: 2021-09-21 09:54:01
# Author: Jacky ([email protected]>)
# -----
# HISTORY:
# Date By Comments
# -------------------- --------- -------------------
#
# -----------------------------------------------------
File renamed without changes.

0 comments on commit e3cb968

Please sign in to comment.