From 683c6f67e79b4f7553f6ae406b8886f64c7c4e5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Wed, 21 Sep 2016 12:56:11 +0200 Subject: [PATCH] First and hopefully last commit --- MANIFEST.in | 1 + README.rst | 1 + noop/__init__.py | 1 + setup.py | 15 +++++++++++++++ 4 files changed, 18 insertions(+) create mode 100644 MANIFEST.in create mode 100644 README.rst create mode 100644 noop/__init__.py create mode 100644 setup.py diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..c4bf456 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include README.rst \ No newline at end of file diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..909ed47 --- /dev/null +++ b/README.rst @@ -0,0 +1 @@ +Python module that does absolutely Nothing :) diff --git a/noop/__init__.py b/noop/__init__.py new file mode 100644 index 0000000..43021db --- /dev/null +++ b/noop/__init__.py @@ -0,0 +1 @@ +print('Hello noop!') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..0fd2fda --- /dev/null +++ b/setup.py @@ -0,0 +1,15 @@ +from setuptools import setup + +setup( + name='noop', + packages=['noop'], # this must be the same as the name above + version='1.1', + description='''Simplest package to test pip + ''', + author='J. Fernando Sanchez', + author_email='balkian@gmail.com', + url='https://github.com/balkian/noop/', # use the URL to the github repo + download_url='https://github.com/balkian/noop/archive/{}.tar.gz' .format('1.0'), + keywords=['noop'], + classifiers=[] +)