Skip to content
/ primal Public template
forked from navdeep-G/samplemod

The first full-fledged Pythonic repository

License

Notifications You must be signed in to change notification settings

0--key/primal

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mental Athlete’s Py-roject

Prerequisites

Emacs

(princ (concat
                (format "Emacs version: %s\n"
                        (emacs-version))
                (format "org version: %s\n"
                        (org-version))))
Emacs version: GNU Emacs 27.1 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.24, cairo version 1.16.0)
 of 2023-02-23, modified by Debian
org version: 9.6.11

Python

python --version 2>&1
Python 3.9.2

[#A] Sample Pythonic Module as a Project

Hosted at GitHub as a detached Repository

More about structure

tree -I '*.pyc|*.*#|*.org~|__pycache__' 2>&1
.
├── docs
│   ├── conf.py
│   ├── index.rst
│   ├── make.bat
│   └── Makefile
├── LICENSE
├── Makefile
├── MANIFEST.in
├── README.org
├── requirements.txt
├── sample
│   ├── core.py
│   ├── helpers.py
│   └── __init__.py
├── setup.py
└── tests
    ├── context.py
    ├── __init__.py
    ├── test_advanced.py
    └── test_basic.py

3 directories, 17 files

This simple project is an template

for all following further Python projects

E.g. it is a mould

and all projects will derive out from there

If you want to learn more about setup.py files

check out this repository.

License issue rectification

Link

About

The first full-fledged Pythonic repository

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 94.8%
  • Makefile 5.2%