-
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) · 737 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (20 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""
Copyright (C) 2019 Interactive Brokers LLC. All rights reserved. This code is subject to the terms
and conditions of the IB API Non-Commercial License or the IB API Commercial License, as applicable.
"""
# from distutils.core import setup
from setuptools import setup
from ibapi import get_version_string
import sys
if sys.version_info < (3, 1):
sys.exit("Only Python 3.1 and greater is supported")
setup(
name="ibapi",
version=get_version_string(),
packages=["ibapi"],
url="https://interactivebrokers.github.io/tws-api",
license="IB API Non-Commercial License or the IB API Commercial License",
author="IBG LLC",
author_email="dnastase@interactivebrokers.com",
description="Python IB API",
)