-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
executable file
·92 lines (79 loc) · 3.14 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
91
#!/usr/bin/python
#Last-modified: 13 Aug 2019
# Module/Scripts Description
#
# Copyright (c) 2016 Peng Zhang <zhpn1024@163.com>
#
# 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: Beta
# @version: 0.2.7
# @author: Peng Zhang
# @contact: zhpn1024@163.com
# ------------------------------------
# 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.7 : # or float(sys.version[:3])>=2.8:
sys.stderr.write("CRITICAL: Python version must be 2.7 or higher!\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()
# version
from src import __version__ as VERSION
PROG = 'ribotish'
#with open('RELEASE','r') as fh:
#PROG, VERSION = fh.next().split()[:2]
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 ngslib.egg-info ]; then rm ngslib.egg-info; fi')
os.system('if [ -d ngslib.egg-info ]; then rm -rf ngslib.egg-info; fi')
sys.exit(0)
# install requirement
install_requires = [ ["pysam >= 0.8.3"],
["matplotlib >= 1.4.3"],
["scipy >= 0.15.1"],
]
setup(name=PROG,
version=VERSION,
author='Peng Zhang',
author_email='zhpn1024@163.com',
url='https://github.com/zhpn1024/ribotish',
license="GNU General Public License (GPL)",
keywords = "Python, Riboseq, translation",
description = ("Python Modules for Riboseq data analysis."),
long_description = long_description,
package_dir={PROG:'src'},
packages = [PROG,'ribotish.run','ribotish.zbio'],
scripts=['bin/ribotish',
#'bin/DumpTargetRNAs.py',
#'bin/EVDPermutation.py',
],
classifiers=['Environment :: Console',
'Development Status :: 4 - Beta',
'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',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics'],
install_requires=install_requires)