Compare commits
54 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c198e7d8bf | |||
| a2db4ce5ae | |||
| 0e5ae4dd68 | |||
| 0d4bb5bbd6 | |||
| ee53992acc | |||
| 45736d1771 | |||
| de2673174f | |||
| 1c318bd34d | |||
| e99684a47d | |||
| f8dcd2f401 | |||
| a43601cffd | |||
| 71cc64977b | |||
| 0cd2814fa7 | |||
| 97268211ff | |||
| 9962c452d8 | |||
| abf8fde9f5 | |||
| 1311cf3c63 | |||
| 59e2665de9 | |||
| 05cc5b06c7 | |||
| 54c68bab99 | |||
| 5dc1f4d325 | |||
| 8bede453ae | |||
| 8cbac7a75e | |||
| 1b31d9091a | |||
| eaf50be2ca | |||
| b24f993780 | |||
| e0bf25d72c | |||
| a4a854a2a8 | |||
| a186bf439c | |||
| a6daa709e9 | |||
| 22f98eaa4b | |||
| 38504ab03a | |||
| 1b8a867fbf | |||
| 9a9bd6c60f | |||
| 6002fbaa98 | |||
| e869e16d9f | |||
| 3a5ad68013 | |||
| b8dc49ef84 | |||
| 140f26977a | |||
| d96cf37147 | |||
| 20f1c1d337 | |||
| f32ca9e9fa | |||
| a06e79102d | |||
| 0e2c486178 | |||
| 950bae882b | |||
| 683f3b5bbc | |||
| 5490144788 | |||
| 42a3f98495 | |||
| c395d76231 | |||
| b2d2346eb7 | |||
| ffb33f61a9 | |||
| adbeac9684 | |||
| 4aac47e639 | |||
| 2028c69b3f |
+24
@@ -0,0 +1,24 @@
|
||||
/OBITools-1.1.19/
|
||||
/OBITools-1.1.20/
|
||||
/OBITools-1.1.21/
|
||||
/OBITools-1.1.22/
|
||||
/OBITools-1.2.0/
|
||||
/obitools.test/
|
||||
/build/
|
||||
/dist/
|
||||
/OBITools-1.2.2/
|
||||
/OBITools-1.2.3/
|
||||
/OBITools-1.2.4/
|
||||
/OBITools-1.2.5/
|
||||
/OBITools-1.2.6/
|
||||
/OBITools-1.2.7/
|
||||
/OBITools-1.2.8/
|
||||
/OBITools-1.2.9/
|
||||
/OBITools-1.2.10/
|
||||
/.DS_Store
|
||||
/OBITools-1.2.11/
|
||||
/OBITools-1.2.12/
|
||||
/obitools.test.old/
|
||||
/coucou
|
||||
/toto.fasta
|
||||
/OBITools-1.2.13/
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<?eclipse-pydev version="1.0"?><pydev_project>
|
||||
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
|
||||
<path>/obitools/src</path>
|
||||
<path>/OBITools-1.1/src</path>
|
||||
<path>/${PROJECT_DIR_NAME}/distutils.ext</path>
|
||||
</pydev_pathproperty>
|
||||
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property>
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
*.pyc
|
||||
/.DS_Store
|
||||
@@ -0,0 +1 @@
|
||||
/*.pyc
|
||||
@@ -0,0 +1 @@
|
||||
/*.pyc
|
||||
@@ -13,26 +13,29 @@ import sys
|
||||
|
||||
try:
|
||||
from sphinx.setup_command import BuildDoc as ori_build_sphinx
|
||||
|
||||
class build_sphinx(ori_build_sphinx):
|
||||
'''
|
||||
Build Sphinx documentation in html, epub and man formats
|
||||
'''
|
||||
|
||||
description = __doc__
|
||||
|
||||
def run(self):
|
||||
self.builder='html'
|
||||
self.finalize_options()
|
||||
ori_build_sphinx.run(self)
|
||||
self.builder='epub'
|
||||
self.finalize_options()
|
||||
ori_build_sphinx.run(self)
|
||||
self.builder='man'
|
||||
self.finalize_options()
|
||||
ori_build_sphinx.run(self)
|
||||
|
||||
except ImportError:
|
||||
if not is_serenity() and install_requirements():
|
||||
log.info("Restarting installation with all dependencies ok")
|
||||
rerun_with_anothe_python(os.path.realpath(sys.executable))
|
||||
|
||||
|
||||
class build_sphinx(ori_build_sphinx):
|
||||
'''
|
||||
Build Sphinx documentation in html, epub and man formats
|
||||
'''
|
||||
|
||||
description = __doc__
|
||||
|
||||
def run(self):
|
||||
self.builder='html'
|
||||
self.finalize_options()
|
||||
ori_build_sphinx.run(self)
|
||||
self.builder='epub'
|
||||
self.finalize_options()
|
||||
ori_build_sphinx.run(self)
|
||||
self.builder='man'
|
||||
self.finalize_options()
|
||||
ori_build_sphinx.run(self)
|
||||
|
||||
@@ -201,7 +201,5 @@ def setup(**attrs):
|
||||
|
||||
if 'ext_modules' not in attrs:
|
||||
attrs['ext_modules'] = EXTENTION
|
||||
|
||||
print "$$$$$$$$$$$$$$$$$$$$$$$$$$$",COMMANDS
|
||||
|
||||
|
||||
ori_setup(**attrs)
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
/*.pyc
|
||||
@@ -0,0 +1 @@
|
||||
/*.pyc
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
/*.pyc
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user