1
0
Fork
You've already forked python-unixsocket2-test
0
  • Python 100%
2025年08月21日 10:55:02 +02:00
src/package_name Set version to 0.0.3 2025年08月21日 10:55:02 +02:00
tests Remove ipydex and explicit urllib3 dependency 2025年08月21日 10:51:07 +02:00
.gitignore Add test 2025年08月21日 10:34:53 +02:00
LICENSE Initial commit 2025年08月21日 10:15:06 +02:00
MANIFEST.in Initial commit 2025年08月21日 10:15:06 +02:00
pyproject.toml Add requests-unixsocket2 dependency 2025年08月21日 10:26:42 +02:00
README.md Add requests-unixsocket2 dependency 2025年08月21日 10:26:42 +02:00
requirements.txt Remove ipydex and explicit urllib3 dependency 2025年08月21日 10:51:07 +02:00

Code style: black

General Information

This is a test package to test guix/guix#2144.

This repository holds the basic directory layout for new python projects. Additional to a reasonable minimum of features (setup.py, requirements.txt, directory structure, ...) it contains the following extras:

  • basic unittest
  • script.py and associated entrypoint in pyproject.toml (allows to call some functionality of the package directly from command line (try package_name cmd1))

Usage

  • Rename directory src/package_name
  • Edit pyproject.toml: replace dummy data with real data.
  • Add your source. a) Either to core.py or b) to your own separate file(s).
    • a) simplifies importing your module
    • b) is more flexible but you have to take care of importability yourself.

For local development it is recommended to install this (better: your) package in editable mode: pip install -e . (run from where pyproject.toml lives).