Skip to content

Commit 0cd6206

Browse files
committed
[FIX] Added dependencies in setup.py
1 parent 2d60e0e commit 0cd6206

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

IntraPy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
along with this program. If not, see <http://www.gnu.org/licenses/>.
1717
'''
1818

19-
__version__ = "0.1.6"
19+
__version__ = "0.1.6.1"

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,17 @@
22
setup(
33
name = 'IntraPy',
44
packages = ['IntraPy'],
5-
version = '0.1.6',
5+
version = '0.1.6.1',
66
description = 'A Python Library to use easily the 42 API',
77
author = 'Jules Lasne',
88
author_email = 'jlasne@student.42.fr',
99
url = 'https://github.com/seluj78/IntraPy',
10-
download_url = 'https://github.com/seluj78/IntraPy/archive/0.1.6.tar.gz',
10+
download_url = 'https://github.com/seluj78/IntraPy/archive/0.1.6.1.tar.gz',
1111
keywords = ['42', 'API', 'python'],
12+
install_requires=[
13+
'json',
14+
'requests',
15+
'python-decouple',
16+
],
1217
classifiers = [],
1318
)

0 commit comments

Comments
 (0)