File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,9 @@ Stateless SAS program runner via web interface
8
8
9
9
### How to run
10
10
11
- ` python main.py [settings json file path] [output csv file path] `
11
+ ` python main.py [settings json file path] [output csv|html file path] `
12
+
13
+ It will append new requests if file already exists.
12
14
13
15
14
16
### Test
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
3
- from distutils . core import setup
3
+ from setuptools import setup
4
4
5
5
setup (
6
6
name = 'sasping' ,
9
9
url = 'https://builds.boemskats.com/bojan/sasping' ,
10
10
packages = ['sasping' , 'sasping.sas' ],
11
11
package_dir = {'sasping' : '.' },
12
- data_files = [
13
- ('report' , 'build/index.html' )
14
- ],
12
+ include_package_data = True ,
13
+ package_data = {
14
+ '' : ['report/build/index.html' ]
15
+ }
15
16
)
You can’t perform that action at this time.
0 commit comments