Skip to content

Commit

Permalink
Adding URL to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hanhha committed Dec 29, 2017
1 parent 1d19621 commit 60a457c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
#!/usr/bin/env python3

from setuptools import setup
setup (name = 'bittrex', version = '1.0', py_modules=['bittrex'],
setup (name = 'bittrex',
version = '1.0',
py_modules=['bittrex'],
description = 'A Python wrapper for Bittrex exchange API',
author = 'Hanh Ha',
author_email = '[email protected]',
license='MIT',
install_requires=[
license = 'MIT',
url = 'https://github.com/hanhha/bittrex',
install_requires = [
'requests',
'retrying',
'simplejson',
Expand Down

0 comments on commit 60a457c

Please sign in to comment.