-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 817 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
from setuptools import setup, find_packages
setup(name = "invutils",
description = "Tools aimed at investing and portfolio tracking, mainly for cryptocurrency",
version = "1.0.1",
url = "https://github.com/xtom4s/inverutilities",
license = "MIT License",
author = "Tom4s",
author_email = "[email protected]",
packages = find_packages(),
install_requires = [ # Fails with ["time", "base64"] - They are removed as they are built-in modules
"requests",
"pandas",
"datetime",
],
classifiers = [
"Programming Language :: Python",
"Development Status :: 1 - Beta",
"Intended Audience :: Anyone who knows python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
)