mirror of
https://github.com/balkian/noop.git
synced 2024-11-21 19:12:29 +00:00
First and hopefully last commit
This commit is contained in:
commit
683c6f67e7
1
MANIFEST.in
Normal file
1
MANIFEST.in
Normal file
@ -0,0 +1 @@
|
|||||||
|
include README.rst
|
1
README.rst
Normal file
1
README.rst
Normal file
@ -0,0 +1 @@
|
|||||||
|
Python module that does absolutely Nothing :)
|
1
noop/__init__.py
Normal file
1
noop/__init__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
print('Hello noop!')
|
15
setup.py
Normal file
15
setup.py
Normal file
@ -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…
Reference in New Issue
Block a user