built with twine

This commit is contained in:
georgemihaila
2020-09-07 19:11:14 -05:00
parent 5d239ed802
commit 121dfd388f
10 changed files with 71 additions and 0 deletions

View File

View 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

Binary file not shown.

BIN
dist/notebookc-0.0.1.tar.gz vendored Normal file

Binary file not shown.

View 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

View 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

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,4 @@
ipython>=6
nbformat>=4
nbconvert>=5
requests>=2

View File

@@ -0,0 +1 @@
ml_things

23
setup.py Normal file
View 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)",
],
)