https://github.com/blueamethyst-studios/pyproj
Python Project Maker and Builder
https://github.com/blueamethyst-studios/pyproj
builder maker project python
Last synced: 2 months ago
JSON representation
Python Project Maker and Builder
- Host: GitHub
- URL: https://github.com/blueamethyst-studios/pyproj
- Owner: BLUEAMETHYST-Studios
- License: gpl-3.0
- Created: 2023-07-02T00:34:04.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-10T18:54:22.000Z (almost 3 years ago)
- Last Synced: 2025-08-23T06:33:26.315Z (10 months ago)
- Topics: builder, maker, project, python
- Language: Python
- Homepage: https://blueamethyst.me/pyproj/
- Size: 91.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Pyproj
Python Project Maker and Builder
## Installation
Read the [INSTALLATION.md](https://github.com/BLUEAMETHYST-Studios/pyproj/blob/main/INSTALLATION.md) file.
## Using Pyproj
### Creating a simple Python application
```
pyproj new default {name}
```
### Creating a new Python Package for PyPi
```
pyproj new package {name}
```
### Building a normal Python application
```
pyproj build
```
### Building a Python package
**Windows:**
```
pyproj-make build
```
**GNU/Linux or MacOS:**
```
make build
```
### Releasing your Python package
#### **NOTE: THE PACKAGE MUST BE BUILT FIRST, BEFORE RELEASING IT**
**Windows:**
```
pyproj-make release
```
**GNU/Linux or MacOS:**
```
make release
```