Skip to content

Instantly share code, notes, and snippets.

@mansu
Created October 20, 2017 18:07
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mansu/f953432c07954264529d21df4ca57db1 to your computer and use it in GitHub Desktop.
Save mansu/f953432c07954264529d21df4ca57db1 to your computer and use it in GitHub Desktop.
Python commons folder structure
# shared dependencies
├── 3rdparty
│ └── python
│ ├── BUILD
│ └── requirements.txt
├── pants.ini
# shared release code
├── teletraan_template
│ ├── PRE_RESTART.erb
│ └── RESTARTING.erb
├── Dockerfile_template.erb
├── jenkins_build.sh
# shared source code
└── src
├── test
│ └── python
│ └── pinterest
│ └── srebot
│ ├── BUILD
│ └── test_bot.py
└── main
└── python
└── pinterest
└── srebot
├── BUILD
└── bot.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment