mirror of
https://github.com/gmihaila/ml_things.git
synced 2021-10-04 01:29:04 +03:00
built with twine
This commit is contained in:
0
build/lib/ml_things/__init__.py
Normal file
0
build/lib/ml_things/__init__.py
Normal file
10
build/lib/ml_things/ml_things.py
Normal file
10
build/lib/ml_things/ml_things.py
Normal file
@@ -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}.")
|
||||
BIN
dist/notebookc-0.0.1-py3-none-any.whl
vendored
Normal file
BIN
dist/notebookc-0.0.1-py3-none-any.whl
vendored
Normal file
Binary file not shown.
BIN
dist/notebookc-0.0.1.tar.gz
vendored
Normal file
BIN
dist/notebookc-0.0.1.tar.gz
vendored
Normal file
Binary file not shown.
23
notebookc.egg-info/PKG-INFO
Normal file
23
notebookc.egg-info/PKG-INFO
Normal file
@@ -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.
|
||||
|
||||
|
||||
</br>
|
||||
|
||||
[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
|
||||
9
notebookc.egg-info/SOURCES.txt
Normal file
9
notebookc.egg-info/SOURCES.txt
Normal file
@@ -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
|
||||
1
notebookc.egg-info/dependency_links.txt
Normal file
1
notebookc.egg-info/dependency_links.txt
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
4
notebookc.egg-info/requires.txt
Normal file
4
notebookc.egg-info/requires.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
ipython>=6
|
||||
nbformat>=4
|
||||
nbconvert>=5
|
||||
requests>=2
|
||||
1
notebookc.egg-info/top_level.txt
Normal file
1
notebookc.egg-info/top_level.txt
Normal file
@@ -0,0 +1 @@
|
||||
ml_things
|
||||
23
setup.py
Normal file
23
setup.py
Normal file
@@ -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)",
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user