File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ include bin/*
2
2
include cppman/*
3
3
include cppman/formatter/*
4
4
include misc/*
5
+ include requirements.txt
5
6
include README.rst
6
7
include AUTHORS
7
8
include COPYING
Original file line number Diff line number Diff line change
1
+ beautifulsoup4 == 4.13.3
2
+ bs4 == 0.0.2
3
+ html5lib == 1.1
4
+ lxml == 5.3.2
5
+ six == 1.17.0
6
+ soupsieve == 2.6
7
+ typing_extensions == 4.13.1
8
+ webencodings == 0.5.1
Original file line number Diff line number Diff line change 16
16
('share/fish/vendor_completions.d/' , ['misc/completions/fish/cppman.fish' ])
17
17
]
18
18
19
+ with open ('requirements.txt' ) as f :
20
+ _requirements = f .read ().splitlines ()
21
+
19
22
setup (
20
23
name = 'cppman' ,
21
24
version = '0.5.7' ,
28
31
package_data = {'cppman' : _package_data },
29
32
data_files = _data_files ,
30
33
scripts = ['bin/cppman' ],
31
- install_requires = [ 'beautifulsoup4' , 'html5lib' ] ,
34
+ install_requires = _requirements ,
32
35
classifiers = [
33
36
'Programming Language :: Python :: 3.5' ,
34
37
'Programming Language :: Python :: 3.6' ,
You can’t perform that action at this time.
0 commit comments