commit 683c6f67e79b4f7553f6ae406b8886f64c7c4e5b Author: J. Fernando Sánchez Date: Wed Sep 21 12:56:11 2016 +0200 First and hopefully last commit 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=[] +)