File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 5
5
import strictdoc
6
6
7
7
package_data = {
8
+ "" : ["requirements.txt" , "requirements.development.txt" ],
8
9
# It looks like the package data in setup.py does not support globbing
9
10
# (see pypa/setuptools#1806, https://github.com/pypa/setuptools/issues/1806)
10
11
# Doing the globbing manually for now.
55
56
"tests*" ,
56
57
],
57
58
),
58
- "package_data" : package_data ,
59
59
# 'package_dir': {"": "strictdoc"},
60
+ # package_data - defines files related to the python package, e.g.,
61
+ # documentation, static image files, configurations.
62
+ # data_files - defines files that will be installed system-wise, not in
63
+ # site-package directory. eg. desktop icons, fonts.
64
+ # https://stackoverflow.com/a/66370532/598057
65
+ "package_data" : package_data ,
66
+ "data_files" : [],
60
67
"install_requires" : REQUIREMENTS ,
61
68
"extras_require" : REQUIREMENTS_DEVELOPMENT ,
62
69
"setup_requires" : REQUIREMENTS_SETUP ,
Original file line number Diff line number Diff line change 1
1
import os
2
2
3
- __version__ = "0.0.27 "
3
+ __version__ = "0.0.28 "
4
4
5
5
STRICTDOC_ROOT_PATH = os .path .join (os .path .dirname (__file__ ), ".." )
You can’t perform that action at this time.
0 commit comments