-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (30 loc) · 971 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(name="mind your stonks",
description="A library for keeping track of your bad investments (stonks).",
author="Katleho Madisa",
author_email="katleho.madisa47@gmail.com",
packages=find_packages(),
url='https://github.com/kmadisa/mind_your_stonks',
license="BSD-2-Clause",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
platforms=["OS Independent"],
install_requires=[
"gspread>=3.0.0",
"oauth2client",
"loguru",
"selenium",
"aenum",
"psutil"],
zip_safe=False,
include_package_data=True,
package_data={},
scripts=["scripts/query_balance.py"],
entry_points={
'console_scripts': []
}
)