-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
31 lines (26 loc) · 853 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
from setuptools import setup, find_packages
import nadex
def read(path):
with open(path, 'rb') as f:
return f.read().strip()
setup(
name='nadex',
version=nadex.__version__,
description='Nadex API client',
author='Kenji Noguchi',
author_email='[email protected]',
url='https://github.com/knoguchi/nadex',
packages=find_packages(),
scripts=['scripts/cancel-all-orders',
'scripts/create-order',
'scripts/get-contracts',
'scripts/get-orders',
'scripts/get-quote',
'scripts/get-balance',
'scripts/get-markets',
'scripts/get-positions',
'scripts/get-timeseries'
],
install_requires=['requests'],
test_suite='tests'
)