Skip to content

Commit

Permalink
*fixed* setuptools and twine/warehouse error by making the license on…
Browse files Browse the repository at this point in the history
…ly 1 line long
  • Loading branch information
Benedikt Schmitt committed May 18, 2019
1 parent 19459fa commit b30bdc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include LICENSE
include README.md
include test.py
include LICENSE
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@
except (OSError, IOError):
long_description = "not available"

try:
license_ = open("LICENSE").read()
except (OSError, IOError):
license_ = "not available"

setup(
name = "filelock",
version = __version__,
Expand All @@ -54,7 +49,7 @@
url = "https://github.com/benediktschmitt/py-filelock",
download_url = "https://github.com/benediktschmitt/py-filelock/archive/master.zip",
py_modules = ["filelock"],
license = license_,
license = "Public Domain <http://unlicense.org>",
test_suite="test",
classifiers = [
"License :: Public Domain",
Expand Down

0 comments on commit b30bdc4

Please sign in to comment.