core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change
on this file since caf768d was
d138d43,
checked in by Paul Kienzle <pkienzle@…>, 9 years ago
|
remove documentation build errors
|
-
Property mode set to
100644
|
File size:
479 bytes
|
Rev | Line | |
---|
[19dcb933] | 1 | import sys |
---|
| 2 | sys.path.insert(0,'..') |
---|
| 3 | |
---|
[61ba623] | 4 | # Convert ../sasmodels/models/name.py to sasmodels.models.name |
---|
[19dcb933] | 5 | module_name = sys.argv[1][3:-3].replace('/','.').replace('\\','.') |
---|
[d138d43] | 6 | #print module_name |
---|
[19dcb933] | 7 | module = __import__(module_name) |
---|
| 8 | for part in module_name.split('.')[1:]: |
---|
| 9 | module = getattr(module, part) |
---|
[d138d43] | 10 | #print module |
---|
[19dcb933] | 11 | |
---|
| 12 | # Load the doc string from the module definition file and store it in rst |
---|
[cb6ecf4] | 13 | from sasmodels import generate |
---|
| 14 | docstr = generate.doc(module) |
---|
[19dcb933] | 15 | open(sys.argv[2],'w').write(docstr) |
---|
Note: See
TracBrowser
for help on using the repository browser.