Skip to content

jackxuhong/python_template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Template

A simple template project for my python scripts.

Project Structure

  • bin - shell wrappers
  • etc - configuration files
  • my_app1 - module source code
  • tests - test cases
  • setup.py - the main setup script
  • requirements.txt - dependencies

Create a virtual environment

python -m venv venv

Activate the virtual environment

# Unix
. venv/bin/activate

# PowerShell
venv\Scripts\Activate.ps1

Install Wheel

pip install wheel

Build the project

python setup.py build

Build the Wheel distriubtion

python setup.py bdist_wheel

About

A simple template project for my python scripts.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors