-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 984 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 984 Bytes
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
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='historicalFinancialData',
version='0.1.3',
description="A package for public companies' historical financial data",
url='https://github.com/DanielMistrik/HistoricFinancialData',
author='Daniel Mistrik',
author_email='danielkomist@gmail.com',
long_description=long_description,
long_description_content_type='text/markdown',
license='Apache 2.0 License',
packages=['historicalFinancialData'],
install_requires=['ratelimit', 'numpy', 'requests', 'pypandoc'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: Apache Software License',
"Operating System :: OS Independent",
],
)