First and hopefully last commit

master
J. Fernando Sánchez 8 years ago
commit 683c6f67e7

@ -0,0 +1 @@
include README.rst

@ -0,0 +1 @@
Python module that does absolutely Nothing :)

@ -0,0 +1 @@
print('Hello noop!')

@ -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=[]
)
Loading…
Cancel
Save