Skip to content

Commit d7a9b19

Browse files
committed
Fixed the requirements
1 parent 0321229 commit d7a9b19

File tree

3 files changed

+122
-12
lines changed

3 files changed

+122
-12
lines changed

.gitignore

+101-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,102 @@
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/
212
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/

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@
1111
with open('HISTORY.rst') as history_file:
1212
history = history_file.read()
1313

14-
requirements = ['Click>=6.0', ]
14+
requirements = [
15+
'Click>=6.0', 'mysqlclient', 'requests',
16+
'boto>=2.49.0', 'xlsxwriter'
17+
]
1518

1619
setup_requirements = ['pytest-runner', ]
1720

toolspy/__init__.py

+17-8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# -*- coding: utf-8 -*-
2+
3+
"""Top-level package for Toolspy."""
4+
5+
__author__ = """Surya Sankar"""
6+
__email__ = '[email protected]'
7+
__version__ = '0.2.29'
8+
9+
110
#########################################################
211
# Add Generic methods independent of any App logic here.
312
# This module is meant to be a Python tool set.
@@ -17,14 +26,14 @@
1726
from contextlib import contextmanager
1827

1928

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 *
2837

2938
CUBIC_INCHES_IN_CUBIC_FEET = 12 * 12 * 12
3039

0 commit comments

Comments
 (0)