Skip to content

Commit

Permalink
second commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanBechtel committed Dec 30, 2021
1 parent 9219fc7 commit 2eb3d45
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# KerasBeats

This is a simple example package. You can use
[Github-flavored Markdown](https://guides.github.com/features/mastering-markdown/)
to write your content.
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(
name="keras-beats-jonathan-bechtel",
version="0.0.2",
author="Jonathan Bechtel",
author_email="jonathan@jonathanbech.tel",
description="Lightweight installation of NBeats NN architecture for keras",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JonathanBechtel/KerasBeats",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
install_requires = ['keras']
)
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from src import kerasbeats

0 comments on commit 2eb3d45

Please sign in to comment.