-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
44 lines (42 loc) · 1.51 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
from setuptools import setup,find_packages
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='stolgo',
version='0.1.2.post1',
description='Utilities for the analysis of financial data',
license="MIT",
long_description_content_type='text/markdown',
long_description=long_description,
author='stolgo Developers',
author_email='[email protected]',
project_urls={
"Organization":"http://www.stolgo.com",
"Source":"https://github.com/stockalgo/stolgo",
"Tracker":"https://github.com/stockalgo/stolgo/issues"
},
packages=find_packages('lib'),
package_dir = {'':'lib'},
include_package_data=True,
install_requires=[
'requests',
'pandas',
'datetime',
'openpyxl',
'futures',
'beautifulsoup4',
'lxml'],
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 = "https://github.com/stockalgo/stolgo/archive/v_0_1_2.tar.gz",
keywords = ['ALGORITHM', 'NSE', 'STOCK','FINANCE',"DERIVATIVE","NSEDATA"]
)