diff --git a/build/lib/ml_things/__init__.py b/build/lib/ml_things/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/build/lib/ml_things/ml_things.py b/build/lib/ml_things/ml_things.py new file mode 100644 index 0000000..59895b5 --- /dev/null +++ b/build/lib/ml_things/ml_things.py @@ -0,0 +1,10 @@ +def convert(my_name): + """ + Print a line about converting a notebook. + Args: + my_name (str): person's name + Returns: + None + """ + + print(f"I'll convert a notebook for you some day, {my_name}.") diff --git a/dist/notebookc-0.0.1-py3-none-any.whl b/dist/notebookc-0.0.1-py3-none-any.whl new file mode 100644 index 0000000..415e2f1 Binary files /dev/null and b/dist/notebookc-0.0.1-py3-none-any.whl differ diff --git a/dist/notebookc-0.0.1.tar.gz b/dist/notebookc-0.0.1.tar.gz new file mode 100644 index 0000000..bead745 Binary files /dev/null and b/dist/notebookc-0.0.1.tar.gz differ diff --git a/notebookc.egg-info/PKG-INFO b/notebookc.egg-info/PKG-INFO new file mode 100644 index 0000000..b7ed98c --- /dev/null +++ b/notebookc.egg-info/PKG-INFO @@ -0,0 +1,23 @@ +Metadata-Version: 2.1 +Name: notebookc +Version: 0.0.1 +Summary: A package to convert your Jupyter Notebook +Home-page: https://github.com/your_package/homepage/ +Author: Jeff Hale +Author-email: jeffmshale@gmail.com +License: UNKNOWN +Description: ## Contains things I find usefull in my Mahcine Learning work + + ## Something not working?/Found somthing fishy? Open an issue please! + + When writing the issue mention what file are you having problems running and the actual error/problem. + + +
+ + [Learning Tensorflow 2.0+](https://github.com/gmihaila/machine_learning_things/tree/master/learning_tensorflow) + +Platform: UNKNOWN +Classifier: Programming Language :: Python :: 3.7 +Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3) +Description-Content-Type: text/markdown diff --git a/notebookc.egg-info/SOURCES.txt b/notebookc.egg-info/SOURCES.txt new file mode 100644 index 0000000..e4ac8f7 --- /dev/null +++ b/notebookc.egg-info/SOURCES.txt @@ -0,0 +1,9 @@ +README.md +setup.py +ml_things/__init__.py +ml_things/ml_things.py +notebookc.egg-info/PKG-INFO +notebookc.egg-info/SOURCES.txt +notebookc.egg-info/dependency_links.txt +notebookc.egg-info/requires.txt +notebookc.egg-info/top_level.txt \ No newline at end of file diff --git a/notebookc.egg-info/dependency_links.txt b/notebookc.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/notebookc.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/notebookc.egg-info/requires.txt b/notebookc.egg-info/requires.txt new file mode 100644 index 0000000..9a68108 --- /dev/null +++ b/notebookc.egg-info/requires.txt @@ -0,0 +1,4 @@ +ipython>=6 +nbformat>=4 +nbconvert>=5 +requests>=2 diff --git a/notebookc.egg-info/top_level.txt b/notebookc.egg-info/top_level.txt new file mode 100644 index 0000000..e3fee70 --- /dev/null +++ b/notebookc.egg-info/top_level.txt @@ -0,0 +1 @@ +ml_things diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..4f0ee9b --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +from setuptools import setup, find_packages + +with open("README.md", "r") as readme_file: + readme = readme_file.read() + +requirements = ["ipython>=6", "nbformat>=4", "nbconvert>=5", "requests>=2"] + +setup( + name="notebookc", + version="0.0.1", + author="Jeff Hale", + author_email="jeffmshale@gmail.com", + description="A package to convert your Jupyter Notebook", + long_description=readme, + long_description_content_type="text/markdown", + url="https://github.com/your_package/homepage/", + packages=find_packages(), + install_requires=requirements, + classifiers=[ + "Programming Language :: Python :: 3.7", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + ], +)