-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
31 lines (29 loc) · 1.07 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="chaseinvest-api",
version="0.3.2",
author="MaxxRK",
author_email="maxxrk@pm.me",
description="An unofficial API for Chase Invest",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/MaxxRK/chaseinvest-api",
download_url="https://github.com/MaxxRK/chaseinvest-api/archive/refs/tags/v0.3.2.tar.gz",
keywords=["CHASE", "API"],
install_requires=["playwright", "playwright-stealth"],
packages=["chase"],
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)