-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.1 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (30 loc) · 1.1 KB
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
import pathlib
import setuptools
long_description = pathlib.Path("README.md").read_text()
setuptools.setup(
name="firstrade",
version="0.0.39",
author="MaxxRK",
author_email="maxxrk@pm.me",
description="An unofficial API for Firstrade",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/MaxxRK/firstrade-api",
download_url="https://github.com/MaxxRK/firstrade-api/archive/refs/tags/0039.tar.gz",
keywords=["FIRSTRADE", "API"],
install_requires=["requests", "pyotp"],
packages=["firstrade"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Session",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
)