From 66ae52927fdbd888661d1d43150eb8d8be709b2d Mon Sep 17 00:00:00 2001 From: encloinc Date: Tue, 30 Aug 2016 09:48:49 -0500 Subject: [PATCH] Update setup.py --- setup.py | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 52 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index d2d20c0..a77079a 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,54 @@ +""" +The MIT License (MIT) +Copyright (c) 2016 EncloCreations +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. +""" + + from setuptools import setup, find_packages - +# To use a consistent encoding +from codecs import open +from os import path + +here = path.abspath(path.dirname(__file__)) + +# Get the long description from the README file +with open(path.join(here, 'README.rst'), encoding='utf-8') as f: + long_description = f.read() + setup( - name = "esf", - version = "1.0", - packages = find_packages() - ) + name='esf', + + version='1.0.3', + + description='Esf is a simple file formatting engine for arrays', + long_description=long_description, + + url='https://github.com/encloinc/esf', + + author='EncloCreations', + author_email='jelch2002@gmail.com', + + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + + 'Programming Language :: Python :: 3', + ], + + keywords=['file', 'simple', 'array'], + + py_modules=["esf", "engine"], + + install_requires=['peppercorn'], + +) +