Skip to content

Commit f231289

Browse files
committed
Moved docs
1 parent ca6c516 commit f231289

8 files changed

Lines changed: 10 additions & 4 deletions

File tree

README.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ v0.14 released:
1616

1717
- Inject mark is also plotted
1818
- xlsx output added (requires xlsxwriter)
19+
- Fixed par1-error when selecting None
20+
- Fixed par1/2-error when selecting data blocks with longer data name
1921
- Minor changes & fixes
22+
- Included Docs
2023

2124

2225
Installation
@@ -37,8 +40,8 @@ Requirements
3740

3841
Usage
3942
-----
40-
- See docs/USAGE_pycorn-bin.txt if you want to extract/plot data directly
41-
- See docs/USAGE_pycorn_module.txt if you want to import it into your script
43+
- See pycorn/docs/USAGE_pycorn-bin.txt if you want to extract/plot data directly
44+
- See pycorn/docs/USAGE_pycorn_module.txt if you want to import it into your script
4245

4346

4447
License

pycorn/pycorn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __init__(self, file_name, reduce=1, inj_sel=-1):
3939
self.inj_sel = inj_sel
4040
self.inject_vol = None
4141
self.header_read = False
42-
self.internal_name = ''
42+
self.run_name = ''
4343

4444
with open(self.file_name, 'rb') as f:
4545
self.raw_data = f.read()

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@
99
name='pycorn',
1010
version='0.14',
1111
author='Yasar L. Ahmed',
12-
packages=['pycorn',],
12+
packages=['pycorn'],
1313
extras_require = {'plotting': ["matplotlib"], 'xlsx-output': ['xlsxwriter']},
1414
scripts=['examplescripts/pycorn-bin.py'],
15+
platforms=['Linux', 'Windows', 'MacOSX'],
16+
zip_safe=False,
17+
package_data={'pycorn': ['docs/*.*']},
1518
license='GNU General Public License v2 (GPLv2)',
1619
description='A script to extract data from UNICORN result (res) files',
1720
long_description=open('README.rst').read(),

0 commit comments

Comments
 (0)