We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19459fa commit b30bdc4Copy full SHA for b30bdc4
MANIFEST.in
@@ -1,3 +1,3 @@
1
-include LICENSE
2
include README.md
3
include test.py
+include LICENSE
setup.py
@@ -38,11 +38,6 @@
38
except (OSError, IOError):
39
long_description = "not available"
40
41
-try:
42
- license_ = open("LICENSE").read()
43
-except (OSError, IOError):
44
- license_ = "not available"
45
-
46
setup(
47
name = "filelock",
48
version = __version__,
@@ -54,7 +49,7 @@
54
49
url = "https://github.com/benediktschmitt/py-filelock",
55
50
download_url = "https://github.com/benediktschmitt/py-filelock/archive/master.zip",
56
51
py_modules = ["filelock"],
57
- license = license_,
52
+ license = "Public Domain <http://unlicense.org>",
58
53
test_suite="test",
59
classifiers = [
60
"License :: Public Domain",
0 commit comments