init: initial commit

This commit is contained in:
han0
2020-11-11 09:09:44 +08:00
commit d2ca865308
8 changed files with 44 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@@ -0,0 +1,7 @@
venv/
__pycache__/
*.ini
.eggs/
*.egg-info
dist/
build/

1
README.md Normal file
View File

@@ -0,0 +1 @@
# nc_http

1
README.rst Normal file
View File

@@ -0,0 +1 @@
nc_http

1
nc_http/__init__.py Normal file
View File

@@ -0,0 +1 @@
__version__ = "0.0.1"

10
package.py Normal file
View 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
View File

@@ -0,0 +1 @@
pycman

20
setup.cfg Normal file
View 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

3
setup.py Normal file
View File

@@ -0,0 +1,3 @@
import setuptools
setuptools.setup(setup_requires=['pbr'], pbr=True)