1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Pierre Rudloff <contact@rudloff.pro>
Date: Sat, 16 Nov 2019 23:52:39 +0900
Subject: Put README.rst in the correct directory
Forwarded: no
===================================================================
---
setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setup.py b/setup.py
index 1276722..e6bdaf5 100644
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ setup(
url = "http://packages.python.org/an_example_pypi_project",
packages=['ufo2otf'],
scripts=['bin/ufo2otf'],
- data_files=[('', ['README.rst'])],
+ data_files=[('share/doc/ufo2otf', ['README.rst'])],
long_description=read('README.rst'),
classifiers=[
"Environment :: Console",
|