文件名称:python-package:python包的模板存储库
文件大小:8KB
文件格式:ZIP
更新时间:2024-04-28 15:25:39
Python
python包 用于构建python软件包并发布到pypi的模板存储库。 指示 重命名package/ 更新setup.py from setuptools import setup , find_packages from package import __version__ # rename package here long_description = '' with open ( './README.md' ) as f : long_description = f . read () install_requires = [] with open ( './requirements.txt' ) as f : install_requires = f . read (). splitlines () setup ( name = 'package' , # r
【文件预览】:
python-package-master
----requirements-dev.txt(52B)
----pytest.ini(265B)
----.github()
--------workflows()
----tests()
--------test_package.py(35B)
--------__init__.py(0B)
----pre-commit.sh(800B)
----LICENSE(1KB)
----init-venv.sh(154B)
----requirements.txt(0B)
----setup.py(2KB)
----.gitignore(2KB)
----serve-docs.sh(39B)
----README.md(1KB)
----publish.bat(123B)
----.flake8(130B)
----publish.sh(105B)
----package()
--------__init__.py(21B)
----.vscode()
--------settings.json(56B)