forked from Victorian-Bioinformatics-Consortium/nesoni
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (31 loc) · 870 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/opt/python/bin/python2.6
from distutils.core import setup
import nesoni
import sys, os
if not os.path.isfile(sys.executable):
print
print 'Python thinks this is its executable:', sys.executable
print
print 'I disagree.'
print
print 'If using sudo, try sudo -E'
print
sys.exit(1)
setup(name='nesoni',
version=nesoni.VERSION,
packages = [
'nesoni',
'treemaker'
],
package_data = {
'treemaker' : ['*.pyx'],
'nesoni' : ['*.pyx'],
},
scripts=['nesoni_scripts/nesoni'],
classifiers = [
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
],
url = 'http://bioinformatics.net.au/software.nesoni.shtml',
author = 'Paul Harrison',
author_email = '[email protected]',
)