Skip to content

Commit

Permalink
Added some missing bits for pypi distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
trendels committed Dec 7, 2012
1 parent 853ca6f commit 5f45261
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.pyc
/MANIFEST
/dist/
19 changes: 19 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) 2011 Stanis Trendelenburg

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include test_gevent_inotifyx.py
include README.md
include LICENSE
2 changes: 1 addition & 1 deletion gevent_inotifyx.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
instead of the current thread.
"""

__version__ = '0.1'
__version__ = '0.1.0'

import os
import struct
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,17 @@ def finalize_options(self):

def run(self):
import unittest
import tests
suite = unittest.TestLoader().loadTestsFromModule(tests)
import test_gevent_inotifyx
suite = unittest.TestLoader().loadTestsFromModule(test_gevent_inotifyx)
unittest.TextTestRunner(verbosity=2).run(suite)

setup(name='gevent_inotifyx',
version=__version__,
description='gevent compatibility for inotifyx',
author='Stanis Trendelenburg',
author_email='stanis.trenelenburg@gmail.com',
author_email='stanis.trendelenburg@gmail.com',
url='https://github.com/trendels/gevent_inotifyx',
license='MIT',
py_modules=['gevent_inotifyx'],
cmdclass = {'test': TestCommand},
)
File renamed without changes.

0 comments on commit 5f45261

Please sign in to comment.