From f39077f3195c378370bb0fdb239edeec9ad37cdd Mon Sep 17 00:00:00 2001 From: abawchen Date: Mon, 2 Mar 2020 16:28:47 +0800 Subject: [PATCH] chore: add LICENSE --- LICENSE | 21 +++++++++++++++++++++ Makefile | 2 +- setup.py | 3 ++- 3 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..50f2d614 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2018-Present Abaw Chen + +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/Makefile b/Makefile index 529ff45e..511ba897 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ lint: @flake8 graphene_mongo test: clean lint - py.test --cov=graphene_mongo + py.test graphene_mongo/tests --cov=graphene_mongo --cov-report=html --cov-report=term register-pypitest: python setup.py register -r pypitest diff --git a/setup.py b/setup.py index ce08187d..91403e2e 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ author_email="abaw.chen@gmail.com", license="MIT", classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Topic :: Software Development :: Libraries", "Programming Language :: Python :: 2.7", @@ -18,6 +18,7 @@ "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: PyPy", + "License :: OSI Approved :: MIT License", ], keywords="api graphql protocol rest relay graphene mongo mongoengine", packages=find_packages(exclude=["tests"]),