-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.05 KB
/
setup.py
File metadata and controls
32 lines (29 loc) · 1.05 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
import pathlib
import setuptools
long_description = pathlib.Path("README.md").read_text()
setuptools.setup(
name="firstrade",
version="0.0.38",
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/0038.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",
],
)