-
-
Save ethankhall/32346c1476f1af67f9639e65a4ea5e53 to your computer and use it in GitHub Desktop.
{py}gradle Directory Structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ tree | |
├── build.gradle | |
├── gradlew | |
├── foo | |
│ ├── build.gradle | |
│ ├── setup.cfg | |
│ ├── setup.py | |
│ ├── src | |
│ │ └── foo | |
│ │ └── __init__.py | |
│ ├── requirements.txt | |
│ └── test | |
│ └── test_foo.py | |
├── <subproject> | |
│ └── ... | |
└── settings.gradle | |
$ ./gradlew build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment