-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
21 lines (19 loc) · 897 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="lumiwealth-tradier",
version="0.1.15",
author="David MacLeod and Robert Grzesik",
description="lumiwealth-tradier is a Python package that serves as a wrapper for the Tradier brokerage API. "
"This package simplifies the process of making API requests, handling responses, and performing various trading "
"and account management operations.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Lumiwealth/lumiwealth-tradier",
packages=find_packages(),
project_urls={"Bug Tracker": "https://github.com/Lumiwealth/lumiwealth-tradier/issues"},
keywords="tradier finance api",
install_requires=["pandas>=2.0.0", "numpy"],
python_requires=">=3.9",
)