forked from owini/finance-database
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (25 loc) · 1015 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="financedatabase",
packages=["financedatabase"],
version="1.0.2",
license="MIT",
description="This is a database of 300.000+ symbols containing Equities, ETFs, Funds, Indices, "
"Currencies, Cryptocurrencies and Money Markets.",
author="JerBouma",
author_email="[email protected]",
url="https://github.com/JerBouma/FinanceDatabase",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["finance", "database", "financials"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Investment",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
],
)