forked from luno/luno-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 681 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
from luno_python import VERSION
setup(
name='luno-python',
version=VERSION,
packages=find_packages(exclude=['tests']),
description='A Luno API client for Python',
author='Neil Garb',
author_email='[email protected]',
install_requires=['requests>=2.18.4', 'six>=1.11.0'],
license='MIT',
url='https://github.com/luno/luno-python',
download_url='https://github.com/luno/luno-python/tarball/%s' % (VERSION, ),
keywords='Luno API Bitcoin Ethereum',
test_suite='tests',
setup_requires=['pytest-runner'],
extras_require={
"test": ["pytest", "pytest-cov", "requests_mock"]
},
)