Skip to content

Commit

Permalink
Remove not used Py packages
Browse files Browse the repository at this point in the history
  • Loading branch information
hildogjr committed Jun 3, 2019
1 parent b514959 commit 16b28ae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
5 changes: 0 additions & 5 deletions kicost/distributors/dist_local_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

# Python2/3 compatibility.
#from __future__ import unicode_literals, print_function, division, absolute_import
from future import standard_library
standard_library.install_aliases()

# Libraries.
import copy, re
import logging
Expand Down
15 changes: 7 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,13 @@

# KiCost Python packages requirements to run-time.
requirements = [
'beautifulsoup4 >= 4.3.2', # HTML tag deal.
'XlsxWriter >= 0.7.3',
'future >= 0.15.0',
'lxml >= 3.7.2',
'yattag >= 1.5.2',
'tqdm >= 4.4.0',
'requests >= 2.18.4',
'CurrencyConverter >= 0.5', # Used to convert price to a not avaiable currecy in one distributor.
'beautifulsoup4 >= 4.3.2', # Deal with HTML and XML tags.
'XlsxWriter >= 0.7.3', # Write the XLSX output file.
#'lxml >= 3.7.2', # Deal with XML files and tags.
#'yattag >= 1.5.2', #Deal with HTML tags.
'tqdm >= 4.30.0', # Progress bar.
'requests >= 2.18.4', # Scrape, API and web modules.
'CurrencyConverter >= 0.13', # Used to convert price to a not available currency in one distributor.
'babel >= 2.6', # For currency format by the language in the spreadsheet.
# 'wxPython >= 4.0', # Graphical package/library needed to user guide.
]
Expand Down

0 comments on commit 16b28ae

Please sign in to comment.