-
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Showing
1 changed file
with
3 additions
and
4 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 |
---|---|---|
|
@@ -17,15 +17,14 @@ | |
python setup.py clean -> will clean all trash (*.pyc and stuff) | ||
To get a full list of avaiable commands, read the output of: | ||
To get a full list of available commands, read the output of: | ||
python setup.py --help-commands | ||
Or, if all else fails, feel free to write to the mathics users list at | ||
[email protected] and ask for help. | ||
""" | ||
|
||
import atexit | ||
import os.path as osp | ||
import platform | ||
import re | ||
|
@@ -61,7 +60,7 @@ def read(*rnames): | |
"chardet", # Used in mathics_scanner.feed | ||
"PyYAML", # Used in mathics-generate-json-table | ||
# "ujson", # Optional Used in mathics_scanner.characters | ||
"click", # Usin in CLI: mathics-generate-json-table | ||
"click", # Using in CLI: mathics-generate-json-table | ||
] | ||
|
||
|
||
|
@@ -76,7 +75,7 @@ def read(*rnames): | |
EXTRAS_REQUIRE[kind] = extras_require | ||
|
||
|
||
def subdirs(root, file="*.*", depth=10): | ||
def subdirs(root:str, file="*.*", depth=10): | ||
for k in range(depth): | ||
yield root + "*/" * k + file | ||
|
||
|