File tree 3 files changed +122
-12
lines changed
3 files changed +122
-12
lines changed Original file line number Diff line number Diff line change 1
- dist /
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__ /
3
+ * .py [cod ]
4
+ * $py.class
5
+
6
+ # C extensions
7
+ * .so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ env /
2
12
build /
3
- * .egg-info
4
- * .pyc
13
+ develop-eggs /
14
+ dist /
15
+ downloads /
16
+ eggs /
17
+ .eggs /
18
+ lib /
19
+ lib64 /
20
+ parts /
21
+ sdist /
22
+ var /
23
+ wheels /
24
+ * .egg-info /
25
+ .installed.cfg
26
+ * .egg
27
+
28
+ # PyInstaller
29
+ # Usually these files are written by a python script from a template
30
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
31
+ * .manifest
32
+ * .spec
33
+
34
+ # Installer logs
35
+ pip-log.txt
36
+ pip-delete-this-directory.txt
37
+
38
+ # Unit test / coverage reports
39
+ htmlcov /
40
+ .tox /
41
+ .coverage
42
+ .coverage. *
43
+ .cache
44
+ nosetests.xml
45
+ coverage.xml
46
+ * .cover
47
+ .hypothesis /
48
+ .pytest_cache /
49
+
50
+ # Translations
51
+ * .mo
52
+ * .pot
53
+
54
+ # Django stuff:
55
+ * .log
56
+ local_settings.py
57
+
58
+ # Flask stuff:
59
+ instance /
60
+ .webassets-cache
61
+
62
+ # Scrapy stuff:
63
+ .scrapy
64
+
65
+ # Sphinx documentation
66
+ docs /_build /
67
+
68
+ # PyBuilder
69
+ target /
70
+
71
+ # Jupyter Notebook
72
+ .ipynb_checkpoints
73
+
74
+ # pyenv
75
+ .python-version
76
+
77
+ # celery beat schedule file
78
+ celerybeat-schedule
79
+
80
+ # SageMath parsed files
81
+ * .sage.py
82
+
83
+ # dotenv
84
+ .env
85
+
86
+ # virtualenv
87
+ .venv
88
+ venv /
89
+ ENV /
90
+
91
+ # Spyder project settings
92
+ .spyderproject
93
+ .spyproject
94
+
95
+ # Rope project settings
96
+ .ropeproject
97
+
98
+ # mkdocs documentation
99
+ /site
100
+
101
+ # mypy
102
+ .mypy_cache /
Original file line number Diff line number Diff line change 11
11
with open ('HISTORY.rst' ) as history_file :
12
12
history = history_file .read ()
13
13
14
- requirements = ['Click>=6.0' , ]
14
+ requirements = [
15
+ 'Click>=6.0' , 'mysqlclient' , 'requests' ,
16
+ 'boto>=2.49.0' , 'xlsxwriter'
17
+ ]
15
18
16
19
setup_requirements = ['pytest-runner' , ]
17
20
Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+
3
+ """Top-level package for Toolspy."""
4
+
5
+ __author__ = """Surya Sankar"""
6
+
7
+ __version__ = '0.2.29'
8
+
9
+
1
10
#########################################################
2
11
# Add Generic methods independent of any App logic here.
3
12
# This module is meant to be a Python tool set.
17
26
from contextlib import contextmanager
18
27
19
28
20
- from code_inspection_tools import *
21
- from web_tools import *
22
- from collection_tools import *
23
- from math_tools import *
24
- from filesystem_tools import *
25
- from datetime_tools import *
26
- from csv_xl_tools import *
27
- from string_tools import *
29
+ from . code_inspection_tools import *
30
+ from . web_tools import *
31
+ from . collection_tools import *
32
+ from . math_tools import *
33
+ from . filesystem_tools import *
34
+ from . datetime_tools import *
35
+ from . csv_xl_tools import *
36
+ from . string_tools import *
28
37
29
38
CUBIC_INCHES_IN_CUBIC_FEET = 12 * 12 * 12
30
39
You can’t perform that action at this time.
0 commit comments