-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
27 lines (25 loc) · 1.03 KB
/
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pynse',
version='0.1.5',
packages=['pynse'],
url='https://www.youtube.com/channel/UC-YF3S7qFB2mj_B78DKPCHw',
include_package_data=True,
package_data={'': ['config/*','symbol_list/*']},
author='StreamAlpha',
description='Library to extract realtime and historical data from NSE website',
long_description_content_type="text/markdown",
long_description=long_description,
install_requires=['requests', 'bs4', 'pandas', 'beautifulsoup4'],
keywords=['nse', 'pynse', 'stock markets', 'national stock exchange'],
classifiers=[
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License'
], )