Skip to content

Commit

Permalink
Merge pull request #39 from mdrachuk/new-license
Browse files Browse the repository at this point in the history
MIT License
  • Loading branch information
mdrachuk committed Aug 18, 2019
2 parents 4c43193 + dbc2502 commit d13bb5f
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 25 deletions.
1 change: 0 additions & 1 deletion .release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ stages:
steps:
- template: .use-python.yml
- script: |
pip install setuptools wheel
python setup.py sdist bdist_wheel
twine upload dist/* -u serious -p $(PYPI_PASSWORD)
displayName: 'Publish to PyPI'
Expand Down
37 changes: 17 additions & 20 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
This is free and unencumbered software released into the public domain.
MIT License

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
Copyright (c) 2019 Misha Drachuk

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
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 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 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.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

For more information, please refer to <http://unlicense.org>
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.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ pytest==4.4.1
pytest-cov==2.6.1
requests==2.21.0
twine==1.13.0
wheel==0.33.6
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,17 @@ def readme():
project_urls={
'Pipelines': 'https://dev.azure.com/misha-drachuk/serious',
'Source': 'https://github.com/mdrachuk/serious/',
'Issues': 'https://github.com/mdrachuk/serious/issues',
},
extras_require={
"dev": ["pytest", "mypy", "hypothesis"]
"dev": ["pytest", "mypy"]
},
include_package_data=True,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Utilities",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
Expand All @@ -41,5 +44,6 @@ def readme():
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Typing :: Typed",
],
)
4 changes: 2 additions & 2 deletions version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import requests
from pkg_resources import safe_version

__version__ = '1.0.0.dev18'
__version__ = '1.0.0.dev19'

__doc__ = """
This module is querying PyPI to check if the current version set to package is already present on PyPI.
Expand All @@ -13,7 +13,7 @@
from dataclasses import dataclass
from typing import Dict, Set, List

from serious.json import JsonModel
from serious import JsonModel


@dataclass
Expand Down

0 comments on commit d13bb5f

Please sign in to comment.