-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
39 lines (37 loc) · 1.26 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
from setuptools import setup,find_packages
with open("README.md", 'r') as f:
README = f.read()
setup(
name='oitool',
version='0.1.0',
description='Utilities for the analysis of Option data',
license="MIT",
long_description=README,
long_description_content_type='text/markdown',
author='Chiranjeev',
author_email='[email protected]',
project_urls={
"Organization":"http://www.bandl.io",
"Source":"https://github.com/stockalgo/OItool",
"Tracker":"https://github.com/stockalgo/OItool/issues"
},
packages=find_packages('lib'),
package_dir = {'':'lib'},
include_package_data=True,
install_requires=[
'bandl',
'influxdb'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
download_url = "",
keywords = ["python","option","nse","open-interest","open-interest-charts"]
)