-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 907 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
setup(name = 'round',
version = '0.9.9',
description = 'Python client for Gem.co',
url = 'http://github.com/GemHQ/round-py',
author = 'Matt Smith <[email protected]>, Dustin Laurence <[email protected]>',
author_email = '[email protected]',
license = 'MIT',
packages = find_packages(exclude=[
u'*.tests', u'*.tests.*', u'tests.*', u'tests']),
scripts = [ 'gemcli' ],
install_requires = [
'PyYAML',
'patchboard==0.5.1',
'pyotp',
'coinop==0.2.1',
'future',
'tabulate'
],
tests_require = [
'pytest',
'tox'
],
dependency_links=[
'https://github.com/marcobiscaro2112/pyotp/tarball/python3#egg=pyotp'
],
zip_safe = False
)