forked from pkjmesra/PKScreener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
131 lines (114 loc) · 4.49 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# -*- coding: utf-8 -*-
# """
# The MIT License (MIT)
# Copyright (c) 2023 pkjmesra
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# """
"""
Spyder Editor
This is a temporary script file.
python setup.py clean build sdist bdist_wheel
"""
import platform
import subprocess
import sys
from distutils.core import setup
import setuptools # noqa
from pkscreener.classes import VERSION
__USERNAME__ = "pkjmesra"
__PACKAGENAME__ = "pkscreener"
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
install_requires = fh.read().splitlines()
install_requires.append("advanced_ta")
if "Windows" in platform.system():
install_requires = [
".github/dependencies/TA_Lib-0.4.28-cp311-cp311-win_amd64.whl"
].extend(install_requires)
elif "Linux" in platform.system():
subprocess.Popen(["chmod", "+x", ".github/dependencies/talib.sh"])
subprocess.Popen("start .github/dependencies/talib.sh", shell=True)
# For Darwin, brew install ta-lib will work
SYS_MAJOR_VERSION = str(sys.version_info.major)
SYS_VERSION = SYS_MAJOR_VERSION + "." + str(sys.version_info.minor)
WHEEL_NAME = (
__PACKAGENAME__ + "-" + VERSION + "-py" + SYS_MAJOR_VERSION + "-none-any.whl"
)
TAR_FILE = __PACKAGENAME__ + "-" + VERSION + ".tar.gz"
EGG_FILE = __PACKAGENAME__ + "-" + VERSION + "-py" + SYS_VERSION + ".egg"
DIST_FILES = [WHEEL_NAME, TAR_FILE, EGG_FILE]
DIST_DIR = "dist/"
# def _post_build():
# if "bdist_wheel" in sys.argv:
# for count, filename in enumerate(os.listdir(DIST_DIR)):
# if filename in DIST_FILES:
# os.rename(DIST_DIR + filename, DIST_DIR + filename.replace(__PACKAGENAME__+'-', __PACKAGENAME__+'_'+__USERNAME__+'-'))
# atexit.register(_post_build)
setup(
name=__PACKAGENAME__,
packages=setuptools.find_packages(where=".", exclude=["docs", "test"]),
include_package_data=True, # include everything in source control
package_data={
__PACKAGENAME__: [
__PACKAGENAME__ + ".ini",
"courbd.ttf",
"LICENSE",
"LICENSE-Screenipy",
]
},
# ...but exclude README.txt from all packages
exclude_package_data={"": ["*.yml"]},
version=VERSION,
description="A Python-based stock screener for NSE, India with alerts to Telegram Channel (pkscreener)",
long_description=long_description,
long_description_content_type="text/markdown",
author=__USERNAME__,
author_email=__USERNAME__ + "@gmail.com",
license="OSI Approved (MIT)",
url="https://github.com/"
+ __USERNAME__
+ "/"
+ __PACKAGENAME__, # use the URL to the github repo
zip_safe=False,
entry_points="""
[console_scripts]
pkscreener=pkscreener.pkscreenercli:pkscreenercli
pkbot=pkscreener.pkscreenerbot:runpkscreenerbot
""",
download_url="https://github.com/"
+ __USERNAME__
+ "/"
+ __PACKAGENAME__
+ "/archive/v"
+ VERSION
+ ".zip",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
install_requires=install_requires,
keywords=["NSE", "Technical Indicators", "Scanning", "Stock Scanners"],
test_suite="test",
),
python_requires = (">=3.9",)