Browse Source

added license, blank readme and setup.cfg

Fabian Peter Hammerle 8 years ago
parent
commit
2020e0dc95
4 changed files with 33 additions and 0 deletions
  1. 21 0
      LICENSE.txt
  2. 2 0
      README.md
  3. 2 0
      setup.cfg
  4. 8 0
      setup.py

+ 21 - 0
LICENSE.txt

@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2015 Fabian Peter Hammerle
+
+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.

+ 2 - 0
README.md

@@ -0,0 +1,2 @@
+# osex
+an extension for python's build-in operating system interface

+ 2 - 0
setup.cfg

@@ -0,0 +1,2 @@
+[metadata]
+description-file = README.md

+ 8 - 0
setup.py

@@ -3,5 +3,13 @@ from setuptools import setup
 setup(
     name = 'osex',
     packages = ['osex'],
+    version = '0.1',
+    description = 'extension for python\'s build-in operating system interface',
+    author = 'Fabian Peter Hammerle',
+    author_email = 'fabian.hammerle@gmail.com',
+    url = 'https://github.com/fphammerle/osex',
+    download_url = 'https://github.com/fphammerle/osex/tarball/0.1',
+    keywords = [],
+    classifiers = [],
     tests_require = ['pytest']
     )