mirror of
https://github.com/gmihaila/ml_things.git
synced 2021-10-04 01:29:04 +03:00
24 lines
726 B
Python
24 lines
726 B
Python
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)",
|
|
],
|
|
)
|