init: initial commit
This commit is contained in:
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
venv/
|
||||||
|
__pycache__/
|
||||||
|
*.ini
|
||||||
|
.eggs/
|
||||||
|
*.egg-info
|
||||||
|
dist/
|
||||||
|
build/
|
1
README.rst
Normal file
1
README.rst
Normal file
@@ -0,0 +1 @@
|
|||||||
|
nc_http
|
1
nc_http/__init__.py
Normal file
1
nc_http/__init__.py
Normal file
@@ -0,0 +1 @@
|
|||||||
|
__version__ = "0.0.1"
|
10
package.py
Normal file
10
package.py
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
|
||||||
|
package = {
|
||||||
|
'name': 'nc_http',
|
||||||
|
'version': '0.0.1',
|
||||||
|
'author': 'han0',
|
||||||
|
'email': 'wslshanlin@sina.com',
|
||||||
|
'scripts': {
|
||||||
|
'default': 'echo 请输入明确的命令名称'
|
||||||
|
}
|
||||||
|
}
|
1
requirements.txt
Normal file
1
requirements.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
pycman
|
20
setup.cfg
Normal file
20
setup.cfg
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
|
||||||
|
[metadata]
|
||||||
|
name = nc_http
|
||||||
|
author = han0
|
||||||
|
author-email = wslshanlin@sina.com
|
||||||
|
summary = awsome project created by pycman.
|
||||||
|
license = MIT
|
||||||
|
description-file =
|
||||||
|
README.rst
|
||||||
|
home-page = http://example.com
|
||||||
|
requires-python = >= 3.6
|
||||||
|
|
||||||
|
[files]
|
||||||
|
packages =
|
||||||
|
nc_http
|
||||||
|
|
||||||
|
|
||||||
|
[entry_points]
|
||||||
|
console_scripts =
|
||||||
|
cmd=package.module:function
|
Reference in New Issue
Block a user