“Estrutura do pacote Python” Respostas de código

Estrutura do pacote Python

# From the official python site
https://packaging.python.org/tutorials/packaging-projects/
# third party python site
https://realpython.com/python-application-layouts/
Itchy Ibis

Estrutura do pacote Python

package_name/
	docs/
	scripts/
	src/
		package_a
			__init__.py
			module_a.py
		package_b
			__init__.py
			module_b.py
	tests/
    	__init__.py
		test_module_a.py
		test_module_b.py
	LICENSE.txt
	CHANGES.txt
	MANIFEST.in
	README.txt
	pyproject.toml
	setup.py
	setup.cfg
TalaatMagdy

Estrutura do pacote Python

package_name/
	docs/
	scripts/
	src/
		package_a
			__init__.py
			module_a.py
		package_b
			__init__.py
			module_b.py
	tests/
    	__init__.py
		test_module_a.py
		test_module_b.py
	LICENSE.txt
	CHANGES.txt
	MANIFEST.in
	README.txt
	pyproject.toml
	setup.py
	setup.cfg
TalaatMagdy

Estrutura do pacote Python

package_name/
	docs/
	scripts/
	src/
		package_a
			__init__.py
			module_a.py
		package_b
			__init__.py
			module_b.py
	tests/
    	__init__.py
		test_module_a.py
		test_module_b.py
	LICENSE.txt
	CHANGES.txt
	MANIFEST.in
	README.txt
	pyproject.toml
	setup.py
	setup.cfg
TalaatMagdy

Estrutura do pacote Python

package_name/
	docs/
	scripts/
	src/
		package_a
			__init__.py
			module_a.py
		package_b
			__init__.py
			module_b.py
	tests/
    	__init__.py
		test_module_a.py
		test_module_b.py
	LICENSE.txt
	CHANGES.txt
	MANIFEST.in
	README.txt
	pyproject.toml
	setup.py
	setup.cfg
TalaatMagdy

Respostas semelhantes a “Estrutura do pacote Python”

Perguntas semelhantes a “Estrutura do pacote Python”

Mais respostas relacionadas para “Estrutura do pacote Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código