-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
saw_021817_2 - Updates to README and .gitignore.
- Loading branch information
Showing
3 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
*.swp | ||
|
||
build/ | ||
dist/ | ||
|
||
pyproject.egg-info/ | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
Copyright (C) 2017 Alpha Griffin | ||
@%@~LICENSE~@%@ | ||
|
||
saw_021817_2 - Updates to README and .gitignore. | ||
|
||
saw_021817_1 - Initial commit. | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,28 @@ | ||
|
||
==================================== | ||
Alpha Griffin Python Starter Project | ||
==================================== | ||
|
||
Starting point for a Python project. | ||
|
||
Clone/fork this to stay current with updates to the main build/install script (setup.py). | ||
|
||
Starting a Project | ||
------------------ | ||
|
||
You can use this repository as a starting point for any Alpha Griffin Python project. Here's an example of one way to accomplish this with GitHub: | ||
|
||
1. Start a new repository on GitHub but **do not initialize** as you will be pushing an existing repository (a clone of pyproject). For this example we'll name it *my_new_thing*. | ||
2. ``git clone http://github.com/AlphaGriffin/pyproject my_new_thing`` | ||
3. ``cd my_new_thing`` | ||
4. ``git remote remove origin`` | ||
5. ``git remote add origin http://github.com/AlphaGriffin/my_new_thing`` | ||
6. ``git push -u origin master`` | ||
|
||
Now your clone of pyproject lives at the new GitHub address and pushes will go there by default. | ||
|
||
|
||
Installing | ||
---------- | ||
|
||
To install this project to the local system: ``python setup.py install`` | ||
|