-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 1.09 KB
/
setup.py
File metadata and controls
31 lines (28 loc) · 1.09 KB
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
import os
from setuptools import find_packages, setup
with open("README.md", encoding="utf8") as file:
long_description = file.read()
setup(
author="Maximilian Mekiska",
author_email="maxmekiska@gmail.com",
url="https://github.com/maxmekiska/imbrium",
description="Standard and Hybrid Deep Learning Multivariate-Multi-Step & Univariate-Multi-Step Time Series Forecasting.",
long_description=long_description,
long_description_content_type="text/markdown",
name="imbrium",
version="3.1.0",
packages=find_packages(include=["imbrium", "imbrium.*"]),
install_requires=[
"setuptools >= 41.0.0",
"tensorflow >=2.16.0, <2.17.0",
],
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords=["machinelearning", "keras", "deeplearning", "timeseries", "forecasting"],
python_rquieres=">= 3.9.0, <= 3.11.0",
)