generated from areed1192/sigma-template
-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
71 lines (52 loc) · 1.67 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from setuptools import setup
from setuptools import find_namespace_packages
# Open the README file.
with open(file="README.md", mode="r") as fh:
long_description = fh.read()
setup(
name='ibc-api',
# Define Author Info.
author='Alex Reed',
author_email='[email protected]',
# Define Version Info.
version='0.1.0',
# Define descriptions.
description='',
long_description=long_description,
long_description_content_type="text/markdown",
# Define repo location.
url='https://github.com/areed1192/interactive-brokers-api',
# Define dependencies.
install_requires=[
'requests==2.24.0',
'fake-useragent'
],
# Specify folder content.
packages=find_namespace_packages(
include=['ibc']
),
# Define the python version.
python_requires='>3.7',
# Define our classifiers.
classifiers=[
# Phase of development my library is in.
'Development Status :: 3 - Alpha',
# Audience this library is intended for.
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Financial and Insurance Industry',
# License that guides my library.
'License :: OSI Approved :: MIT License',
# Package was written in English.
'Natural Language :: English',
# Operating systems.
'Operating System :: OS Independent',
# Programming Languages Used..
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
# Topics.
'Topic :: Database',
'Topic :: Education',
'Topic :: Office/Business'
]
)