Skip to content
This repository has been archived by the owner on Jan 7, 2020. It is now read-only.

Commit

Permalink
removed requests from requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
andreafioraldi committed Dec 15, 2017
1 parent 0a5c03c commit d147e1b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
requests
progressbar2
guanciale
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,20 @@

from setuptools import setup

VER = "1.0.4"

setup(
name='carbonara_cli',
version="1.0.4",
version=VER,
license=__license__,
description='CLI interface for Carbonara',
author=__author__,
author_email=__email__,
url='https://github.com/Carbonara-Project/Carbonara-CLI',
download_url = 'https://github.com/Carbonara-Project/Carbonara-CLI/archive/1.0.1.tar.gz',
download_url = 'https://github.com/Carbonara-Project/Carbonara-CLI/archive/' + VER + '.tar.gz',
package_dir={'carbonara_cli': 'carbonara_cli'},
packages=['carbonara_cli'],
install_requires=[
'requests',
'progressbar2',
'guanciale'
],
Expand Down

0 comments on commit d147e1b

Please sign in to comment.