forked from yusuf8ahmed/Wsimple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 987 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
27
28
29
30
31
32
33
34
35
from os import path
from setuptools import setup, find_packages
setup(
name="wsimple",
version="3.0.0",
author="Yusuf Ahmed",
author_email="[email protected]",
long_description=open("README.md").read(),
packages=find_packages("src"),
package_dir={"": "src"},
description="Wsimple.py: a API and Web interface for Wealthsimple Trade",
long_description_content_type="text/markdown",
url="https://github.com/yusuf8ahmed/Wsimple",
install_requires=[
"loguru",
"cloudscraper",
"requests",
"python-box",
"websockets"],
classifiers=[
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_data={
"images": ["*.svg"],
"": ["*.md"]
},
platforms = 'any',
keywords ='wsimple',
python_requires='>=3',
zip_safe = False
)