-
-
Notifications
You must be signed in to change notification settings - Fork 185
/
setup.py
37 lines (35 loc) · 1.01 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 setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="webull",
version="0.6.1",
author="ted chou",
description="The unofficial python interface for the WeBull API",
license='MIT',
author_email="ted.chou12@gmail.com",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tedchou12/webull.git",
packages=setuptools.find_packages(),
install_requires=[
"certifi>=2020.4.5.1",
"chardet>=3.0.4",
"idna>=2.9",
"numpy>=1.18.4",
"pandas>=0.25.3",
"python-dateutil>=2.8.1",
"pytz>=2020.1",
"requests>=2.23.0",
"six>=1.14.0",
"urllib3>=1.25.9",
"email-validator>=1.1.0",
"paho-mqtt>=1.6.0"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)