diff options
| author | mo khan <mo.khan@gmail.com> | 2020-01-09 15:01:32 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-01-09 15:01:32 -0700 |
| commit | 832a687a208e6ada1edce680e33784b3febf6c8a (patch) | |
| tree | ae81cc9e709b8beacf2f83bbc47d12b1c8c06ac0 /example_pkg | |
| parent | 31aee661376173955824111a375618e65103a469 (diff) | |
Diffstat (limited to 'example_pkg')
| -rw-r--r-- | example_pkg/LICENSE | 19 | ||||
| -rw-r--r-- | example_pkg/README.md | 5 | ||||
| -rw-r--r-- | example_pkg/__init__py | 0 | ||||
| -rw-r--r-- | example_pkg/setup.py | 22 |
4 files changed, 0 insertions, 46 deletions
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 --- a/example_pkg/__init__py +++ /dev/null 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', -) |
