Skip to content

Commit 0eecbae

Browse files
author
bojan88
committed
Fixed pip install issues and updated readme
1 parent 3e2c775 commit 0eecbae

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ Stateless SAS program runner via web interface
88

99
### How to run
1010

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.
1214

1315

1416
### Test

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

3-
from distutils.core import setup
3+
from setuptools import setup
44

55
setup(
66
name='sasping',
@@ -9,7 +9,8 @@
99
url='https://builds.boemskats.com/bojan/sasping',
1010
packages=['sasping', 'sasping.sas'],
1111
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+
}
1516
)

0 commit comments

Comments
 (0)