Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matthewadams/python-poetry-monorepo
Working area to establish best practices for a python monorepo using poetry
https://github.com/matthewadams/python-poetry-monorepo
Last synced: 16 days ago
JSON representation
Working area to establish best practices for a python monorepo using poetry
- Host: GitHub
- URL: https://github.com/matthewadams/python-poetry-monorepo
- Owner: matthewadams
- License: mit
- Created: 2025-01-16T17:50:57.000Z (23 days ago)
- Default Branch: dev
- Last Pushed: 2025-01-16T18:19:45.000Z (23 days ago)
- Last Synced: 2025-01-16T19:44:43.123Z (23 days ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sample Python Monorepo
This project is attempting to illustrate how to organize python library projects & runnable projects in a monorepo.
This project is using the minimum python version as indicated in `pyproject.toml`.
## After Cloning
```shell
python3 -m venv .venv
source .venv/bin/activate
# see below for TODOs
```## TODOs
### Determine poetry commands to install dependencies
### Determine how best to provide a good out-of-the-box dev experience
#### Determine how best to import monorepo project into IDEs
Poetry edit mode?
##### PyCharm
### Determine poetry commands to build the project via command line
### Determine poetry commands to publish private libraries to private package repo
### Determine poetry commands to publish public libraries to pypi
### Determine poetry commands to package `app` so that it runs
* Deliver a self-contained, single-file, portable, runnable executable?
* Binary and obfuscated format?