-
-
Notifications
You must be signed in to change notification settings - Fork 227
/
setup.py
45 lines (42 loc) · 1.18 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
from setuptools import setup
import codecs
import os
VERSION = '0.0.21'
DESCRIPTION = 'Getting indicators based on smart money concepts or ICT'
# read the contents of the README file
with codecs.open("README.md", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
# Setting up
setup(
name="smartmoneyconcepts",
version=VERSION,
author="Joshua Attridge",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=["smartmoneyconcepts"],
install_requires=["pandas==2.0.2", "numpy==1.24.3", "numba==0.59.1"],
keywords=[
"smart",
"money",
"concepts",
"ict",
"indicators",
"trading",
"forex",
"stocks",
"crypto",
"order",
"blocks",
"liquidity",
],
url="https://github.com/joshyattridge/smartmoneyconcepts",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
)