-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 874 Bytes
/
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
from setuptools import setup, find_packages
long_description = """This is an unofficial API use to interact with the trading212 platform. It is still currently in
it's testing stages I created this API to challenge myself and also start creating a portfolio of
work that i can showcase to employers"""
setup(
name="apit212",
version="3.0.1",
packages=find_packages(),
requires=[
'requests',
'selenium',
],
author="Flock92",
author_email="stuwe_3000@outlook.com",
description="Unofficial trading212 API",
long_description=long_description,
license="MIT",
keywords="trading api" "python3" "trading212" "API",
url="https://github.com/Flock92/aPit212",
classifiers=[
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
]
)