blob: a311c9c710a0cf2bc70200ba4cdcda3ecb325b5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
diff --git a/setup.cfg b/setup.cfg
index 2e0f031..a3fd11d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,3 +1,3 @@
[metadata]
-description-file = README.md
-license_file = LICENSE.txt
+description_file = README.md
+license_files = LICENSE.txt
diff --git a/setup.py b/setup.py
index 40e5bb8..c685b4d 100755
--- a/setup.py
+++ b/setup.py
@@ -77,13 +77,13 @@ def get_long_description():
with open('README.md') as f:
long_description = f.read()
- with open('CHANGELOG.md') as f:
- release_notes = f.read()
+ # with open('CHANGELOG.md') as f:
+ # release_notes = f.read()
# Plug release notes into the long description
- long_description = long_description.replace(
- '# Release Notes\n\nPlease see [CHANGELOG.md](CHANGELOG.md) for release notes.',
- release_notes)
+ # long_description = long_description.replace(
+ # '# Release Notes\n\nPlease see [CHANGELOG.md](CHANGELOG.md) for release notes.',
+ # release_notes)
return long_description
|