Commit 76ce2864 by Oleksandr Barabash

setup added

parent 09515ebf
Copyright (c) 2018 The Python Packaging Authority
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.
name = "s1zlibs"
Metadata-Version: 2.1
Name: s1zlibs
Version: 1.0.0
Summary: s1zlibs
Home-page: https://git.s1z.info/skal/s1zlibs
Author: Barabash Oleksandr
Author-email: skaltmn@gmail.com
License: UNKNOWN
Description: py libs
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: Linux
Description-Content-Type: text/markdown
README.md
setup.py
s1zlibs/__init__.py
s1zlibs.egg-info/PKG-INFO
s1zlibs.egg-info/SOURCES.txt
s1zlibs.egg-info/dependency_links.txt
s1zlibs.egg-info/top_level.txt
\ No newline at end of file
name = "s1zlibs"
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="s1zlibs",
version="1.0.0",
author="Barabash Oleksandr",
author_email="skaltmn@gmail.com",
description="s1zlibs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.s1z.info/skal/s1zlibs",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux"
],
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment