-
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.
- Loading branch information
1 parent
198f2b6
commit 6629a58
Showing
2 changed files
with
17 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# file GENERATED by distutils, do NOT edit | ||
my_research.py | ||
setup.py | ||
examples\Example of usage of the API.py | ||
examples\Example of usage of the SeriesResearch ADT.py | ||
modules\an_array.py | ||
modules\my_research.py | ||
modules\series_research.py | ||
modules\work_with_a_file.py |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# setup.py | ||
from distutils.core import setup | ||
setup(name="coursework2017", | ||
version="1.0", | ||
py_modules=[], | ||
packages=['modules', 'examples'], | ||
scripts=['modules/my_research.py'], | ||
) |