forked from Voyz/ibeam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.33 KB
/
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
33
34
35
36
37
38
39
40
from distutils.core import setup
from setuptools import find_packages
import ibeam
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='ibeam',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests", "examples", "docs", "out", "dist"]),
version=ibeam.__version__,
license='Apache-2.0',
description='IBeam is an authentication and maintenance tool used for the Interactive Brokers Client Portal Web API Gateway.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Voy Zan',
author_email='[email protected]',
url='https://github.com/Voyz/ibeam',
keywords=['interactive brokers', 'algo trading',
'algorithmic trading', 'data flow', 'quant', 'trading'],
install_requires=[
'selenium==3.*',
'cryptography==40.*',
'pyvirtualdisplay==3.*',
'apscheduler==3.*',
'psutil==5.*',
'requests==2.*',
'pillow==9.*'
],
classifiers=[
'Development Status :: 4 - Beta',
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.7',
],
)