Metadata-Version: 2.1
Name: smallfileserver
Version: 0.1.0
Summary: A webpage that supports file upload and download
Author-email: OSmile <whghcyx@outlook.com>
Project-URL: Homepage, https://github.com/WHG555/smallfileserver
Project-URL: Bug Tracker, https://github.com/WHG555/smallfileserver/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE

# 这是一个可以上传到pypi的例程

# pypi网站
[https://pypi.org/](https://pypi.org/)

# 操作流程
## 安装需要的包
```
python -m pip install --upgrade build
python -m pip install --upgrade twine
```
## 编译包
```
python -m build
```

## 检查包
```
twine check dist/*
```

## 上传包 到测试网站
```
python -m twine upload --repository testpypi dist/*
```

## 上传到pypi
```
twine upload dist/*
```



# 使用
```
python -m simplefileserver
```


