-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
91 lines (78 loc) · 3.12 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/usr/bin/python
#Last-modified: 23 Jul 2017 11:44:09 PM
# Module/Scripts Description
#
# Copyright (c) 2008 Yunfei Wang <[email protected]>
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the BSD License (see the file COPYING included with
# the distribution).
#
# @status: experimental
# @version: 1.1.0
# @author: Yunfei Wang
# @contact: [email protected]
# ------------------------------------
# python modules
# ------------------------------------
import os,sys
from setuptools import setup, find_packages, Extension
# ------------------------------------
# constants
# ------------------------------------
# ------------------------------------
# Misc functions
# ------------------------------------
# ------------------------------------
# Classes
# ------------------------------------
# ------------------------------------
# Main
# ------------------------------------
if __name__ == '__main__':
if float(sys.version[:3])<2.6 or float(sys.version[:3])>=2.8:
sys.stderr.write("CRITICAL: Python version must be 2.6 or 2.7!\n")
sys.exit(1)
# includepy = "%s/include/python%s" % (sys.prefix, sys.version[:3])
with open("README.rst",'r') as fh:
long_description = fh.read()
idx = long_description.find('\n')
description = long_description[:idx].rstrip()
# ngsplot version
with open('RELEASE','r') as fh:
PROG, VERSION = fh.next().rstrip().split()[:2]
# Compile Kent lib
if 'clean' in sys.argv:
print >>sys.stderr, "Clean dist and egg info ..."
os.system('if [ -d dist ]; then rm -rf dist; fi')
os.system('if [ -f {0}.egg-info ]; then rm {0}.egg-info; fi'.format(PROG))
os.system('if [ -d {0}.egg-info ]; then rm -rf {0}.egg-info; fi'.format(PROG))
# install requirement
install_requires = [ ["numpy >= 1.4.1"],
["pandas >= 0.20.2"],
["scipy >= 0.19.1"]]
# Python 2.6 requires argparse
if float(sys.version[:3]) == 2.6:
install_requires.append(["argparse >= 1.2.1"])
setup(name=PROG,
version=VERSION,
author='Yunfei Wang',
author_email='[email protected]',
url='https://github.com/tsznxx/{0}'.format(PROG),
license="GNU General Public License (GPL)",
keywords = "Python NGS plot",
description = (description),
long_description = long_description,
package_dir={PROG:'src'},
packages = [PROG],
scripts=['bin/GSEA.py','bin/gsea.py'],
ext_modules=[],
classifiers=['Environment :: Console',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'License :: Free for non-commercial use',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics'],
install_requires=install_requires)