File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
- import os
3
2
4
3
from setuptools import find_packages , setup
5
4
6
5
import strictdoc
7
6
8
7
package_data = {
9
- "" : ["requirements.txt" , "requirements.development.txt" ],
10
8
# It looks like the package data in setup.py does not support globbing
11
9
# (see pypa/setuptools#1806, https://github.com/pypa/setuptools/issues/1806)
12
10
# Doing the globbing manually for now.
22
20
],
23
21
}
24
22
25
- data_files = [
26
- "requirements.txt" ,
27
- "requirements.development.txt" ,
28
- ]
29
-
30
23
with open ("requirements.txt" ) as fp :
31
24
REQUIREMENTS = fp .read ()
32
25
64
57
),
65
58
"package_data" : package_data ,
66
59
# 'package_dir': {"": "strictdoc"},
67
- "data_files" : data_files ,
68
60
"install_requires" : REQUIREMENTS ,
69
61
"extras_require" : REQUIREMENTS_DEVELOPMENT ,
70
62
"setup_requires" : REQUIREMENTS_SETUP ,
71
63
"entry_points" : entry_points ,
72
64
"python_requires" : ">=3.6.2,<4.0.0" ,
73
65
}
74
66
75
-
76
67
setup (** setup_kwargs )
Original file line number Diff line number Diff line change 1
1
import os
2
2
3
- __version__ = "0.0.26 "
3
+ __version__ = "0.0.27 "
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