-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
setup.py
173 lines (151 loc) · 6.34 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# -*- 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
import os
import shutil
from distutils.core import setup
import setuptools # noqa
try:
from pkscreener.classes import VERSION
except:
VERSION = "0.45"
pass
__USERNAME__ = "pkjmesra"
__PACKAGENAME__ = "pkscreener"
if os.path.exists("README.md") and os.path.isfile("README.md"):
with open("README.md", "r") as fh:
long_description = fh.read()
if os.path.isfile("requirements.txt") and os.path.isfile("requirements.txt"):
with open("requirements.txt", "r") as fh:
install_requires = fh.read().splitlines()
install_requires.append("advanced_ta")
talibWindowsFile = ".github/dependencies/TA_Lib-0.4.29-cp311-cp311-win_amd64.whl"
talibLinuxFile = ".github/dependencies/build_tools/github/talib.sh"
if "Windows" in platform.system() and os.path.isfile(talibWindowsFile) and os.path.isfile(talibWindowsFile):
install_requires = [talibWindowsFile].extend(install_requires)
elif "Linux" in platform.system() and os.path.isfile(talibLinuxFile) and os.path.isfile(talibLinuxFile):
subprocess.Popen(["chmod", "+x", talibLinuxFile])
subprocess.Popen(talibLinuxFile, shell=True)
elif "Darwin" in platform.system():
subprocess.Popen("brew install talib", 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)
PYTHON_VERSION = (3, 11)
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)
try:
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
class bdist_wheel(_bdist_wheel):
def finalize_options(self):
_bdist_wheel.finalize_options(self)
self.root_is_pure = False
except ImportError:
bdist_wheel = None
package_files_To_Install = ["LICENSE","README.md","requirements.txt",f"docs{os.sep}LICENSE-Others",
f"Disclaimer.txt",f"screenshots{os.sep}logos{os.sep}LogoWM.png"]
package_files = [__PACKAGENAME__ + ".ini","courbd.ttf"]
package_dir = os.path.join(os.getcwd(),__PACKAGENAME__)
if os.path.exists(package_dir):
for file in package_files_To_Install:
targetFileName = file.split(os.sep)[-1].split(".")[0] + ".txt"
package_files.append(targetFileName)
srcFile = os.path.join(os.getcwd(),file)
if os.path.isfile(srcFile):
shutil.copy(srcFile,os.path.join(package_dir,targetFileName))
setup(
name=__PACKAGENAME__,
packages=setuptools.find_packages(where=".", exclude=["docs", "test"]),
cmdclass={'bdist_wheel': bdist_wheel},
include_package_data=True, # include everything in source control
package_data={
__PACKAGENAME__: package_files
},
# ...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.11",
],
install_requires=install_requires,
keywords=["NSE", "Technical Indicators", "Scanning", "Stock Scanners"],
test_suite="test",
),
python_requires = (">=3.11",)