From 2eb3d4592710002d7c4d35590df6ccf95ffe2372 Mon Sep 17 00:00:00 2001 From: Jonathan Bechtel Date: Thu, 30 Dec 2021 00:14:44 -0500 Subject: [PATCH] second commit --- README.md | 5 +++++ setup.py | 24 ++++++++++++++++++++++++ src/__init__.py | 2 +- 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 README.md create mode 100644 setup.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..d6d4496 --- /dev/null +++ b/README.md @@ -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. \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..50c9093 --- /dev/null +++ b/setup.py @@ -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'] +) \ No newline at end of file diff --git a/src/__init__.py b/src/__init__.py index 8d1c8b6..631c9a8 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1 +1 @@ - +from src import kerasbeats