Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paltman-archive/python-setup-template
a place to copy and paste a new setup.py
https://github.com/paltman-archive/python-setup-template
Last synced: 3 months ago
JSON representation
a place to copy and paste a new setup.py
- Host: GitHub
- URL: https://github.com/paltman-archive/python-setup-template
- Owner: paltman-archive
- Created: 2011-08-21T00:40:55.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2012-07-01T05:15:43.000Z (over 12 years ago)
- Last Synced: 2024-07-19T17:40:23.908Z (4 months ago)
- Language: Python
- Homepage:
- Size: 91.8 KB
- Stars: 60
- Watchers: 4
- Forks: 29
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
This is what I use to package up Python (mostly Django apps) packages.
## Usage
* git clone https://[email protected]/paltman/python-setup-template.git
* cd your-project-directory
* Make sure your package is not at the root of your project directory
(e.g. your-project-directory/your\_package)
* cp -r ../python-setup-template/\* .
* Doing this you should end up with a setup.py and docs/ as peers to your
your\_package directory.
* Edit the docs/Makefile and change the name of the PROJECT variable
to match your package name.
* Edit the docs/conf.py and set the different variables to the approprate
values.
* Write your documentation you can use the provided stubs, but they are
mostly what I use to document Django apps so I leave them in here.