
`data_files` installs into Python's installation prefix (not into the directory of the python module), potentially causing collisions if other packages do the same (with such general files).
13 lines
454 B
Diff
13 lines
454 B
Diff
diff --git a/setup.py b/setup.py
|
|
index 297357b..12b861f 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -39,7 +42,6 @@
|
|
'Programming Language :: Python :: 3.10',
|
|
'Programming Language :: Python :: 3.11', 'Topic :: Text Processing'
|
|
],
|
|
- data_files=[('', ['README.rst', 'CHANGES.rst'])],
|
|
long_description='%s\n\n%s' %
|
|
(open('README.rst', encoding='utf8').read(),
|
|
open('CHANGES.rst', encoding='utf8').read()),
|