-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
37 lines (32 loc) · 1.15 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
import os
import sys
import codecs
from setuptools import setup, find_packages
if sys.version_info < (3, 6, 0):
raise RuntimeError("optopus requires Python 3.6 or higher")
here = os.path.abspath(os.path.dirname(__file__))
__version__ = None
exec(open(os.path.join(here, 'optopus', 'version.py')).read())
with codecs.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='optopus',
version=__version__,
description='Python trading tool for options using ib_insync',
long_description=long_description,
url='https://github.com/ciherraiz/optopus',
author='ciherraiz',
author_email='a@a.com',
license='BSD',
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Office/Business :: Financial :: Investment',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
],
keywords='ibapi asyncio jupyter interactive brokers async',
packages=find_packages(exclude=['data', 'notebooks']),
)