-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.84 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import setuptools
pkg_location = 'src'
pkg_name = 'nseazy'
vfile = './'+pkg_name+'/_version.py'
vers = {}
with open(vfile) as f:
exec(f.read(), {}, vers)
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name=pkg_name,
version=vers['__version__'],
author='Dr Chandrakant',
author_email='nseazy-users@python.org',
maintainer_email='DrChandrakant.github@gmail.com',
description='Utilities for the NSE India API',
long_description=long_description,
long_description_content_type='text/markdown; charset=UTF-8',
url='https://github.com/DrChandrakant/NSEazy',
platforms='Cross platform (Linux, Mac OSX, Windows)',
install_requires=['pandas','requests'],
license="BSD-style",
packages=setuptools.find_packages(),
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Information Analysis',
],
keywords=['finance','candlestick','ohlc','market','investing','technical analysis'],
)