From 832a687a208e6ada1edce680e33784b3febf6c8a Mon Sep 17 00:00:00 2001 From: mo khan Date: Thu, 9 Jan 2020 15:01:32 -0700 Subject: promote to root of git tree --- LICENSE | 19 +++++++++++++++++++ README.md | 5 +++++ __init__py | 0 example_pkg/LICENSE | 19 ------------------- example_pkg/README.md | 5 ----- example_pkg/__init__py | 0 example_pkg/setup.py | 22 ---------------------- setup.py | 22 ++++++++++++++++++++++ 8 files changed, 46 insertions(+), 46 deletions(-) create mode 100644 LICENSE create mode 100644 README.md create mode 100644 __init__py delete mode 100644 example_pkg/LICENSE delete mode 100644 example_pkg/README.md delete mode 100644 example_pkg/__init__py delete mode 100644 example_pkg/setup.py create mode 100644 setup.py diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..bbe5b08 --- /dev/null +++ b/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2018 mo khan + +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. diff --git a/README.md b/README.md new file mode 100644 index 0000000..ad9ff9a --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Example Package + +This is a simple example package. You can use +[Github-flavored Markdown](https://guides.github.com/features/mastering-markdown/) +to write your content. diff --git a/__init__py b/__init__py new file mode 100644 index 0000000..e69de29 diff --git a/example_pkg/LICENSE b/example_pkg/LICENSE deleted file mode 100644 index bbe5b08..0000000 --- a/example_pkg/LICENSE +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2018 mo khan - -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. diff --git a/example_pkg/README.md b/example_pkg/README.md deleted file mode 100644 index ad9ff9a..0000000 --- a/example_pkg/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Example Package - -This is a simple example package. You can use -[Github-flavored Markdown](https://guides.github.com/features/mastering-markdown/) -to write your content. diff --git a/example_pkg/__init__py b/example_pkg/__init__py deleted file mode 100644 index e69de29..0000000 diff --git a/example_pkg/setup.py b/example_pkg/setup.py deleted file mode 100644 index 7f738fb..0000000 --- a/example_pkg/setup.py +++ /dev/null @@ -1,22 +0,0 @@ -import setuptools - -with open("README.md", "r") as fh: - long_description = fh.read() - -setuptools.setup( - name="example-pkg-mokha", - version="0.0.1", - author="mo khan", - author_email="mo.khan@gmail.com", - description="A small example package", - long_description=long_description, - long_description_content_type="text/markdown", - url="https://github.com/pypa/sampleproject", - packages=setuptools.find_packages(), - classifiers=[ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", - "Operating System :: OS Independent", - ], - python_requires='>=3.6', -) diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..7f738fb --- /dev/null +++ b/setup.py @@ -0,0 +1,22 @@ +import setuptools + +with open("README.md", "r") as fh: + long_description = fh.read() + +setuptools.setup( + name="example-pkg-mokha", + version="0.0.1", + author="mo khan", + author_email="mo.khan@gmail.com", + description="A small example package", + long_description=long_description, + long_description_content_type="text/markdown", + url="https://github.com/pypa/sampleproject", + packages=setuptools.find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + python_requires='>=3.6', +) -- cgit v1.2.3