-
Notifications
You must be signed in to change notification settings - Fork 69
/
setup.py
40 lines (37 loc) · 1.27 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
from setuptools import setup, find_packages
try:
requires = list()
f = open("requirements.txt", "rb")
for line in f.read().decode("utf-8").split("\n"):
line = line.strip()
if "#" in line:
line = line[: line.find("#")].strip()
if line:
requires.append(line)
except:
print("'requirements.txt' not found!")
requires = list()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="tuneta",
version="0.1.44",
author="John Richardson",
author_email="[email protected]",
description="Optimize financial technical indicators for machine learning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jmrichardson/tuneta",
keywords="technical analysis optimize tune indicators machine learning optuna tune hyperparameter optimization AI correlation",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Operating System :: OS Independent",
],
install_requires=requires,
python_requires='>=3.6',
platform=["any"],
)