-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·66 lines (53 loc) · 1.9 KB
/
setup.py
File metadata and controls
executable file
·66 lines (53 loc) · 1.9 KB
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
#!/usr/bin/env python
"""Description
Setup script for GCAM -- Gene Celltype Association Miner
Copyright (c) 2015 Peeyush Sahu <peeyush.sahu@imt.uni-marburg.de>
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: $Revision$
@author: Peeyush Sahu
@contact: peeyush.sahu@imt.uni-marburg.de
"""
import sys
from setuptools import setup, Extension
def main():
if float(sys.version[:3])<2.7 or float(sys.version[:3])>2.8:
print "Warning: Python version is not 2.7.x"
#sys.stderr.write("CRITICAL: Python version must be 2.7!\n")
#sys.exit(1)
setup(name="GCAM",
version="1.0.0",
description="Gene Celltype Association Miner",
author='Peeyush Sahu',
author_email='peeyush.sahu@imt.uni-marburg.de',
url='https://github.com/peeyushsahu/GCAM_python.git',
packages=['GCAM'],
package_dir={'GCAM' : 'GCAM'},
package_data={'GCAM': ['resources/*']},
scripts=['bin/gcam'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python',
],
install_requires=[
'numpy',
'matplotlib',
'pandas',
'biopython',
'scipy',
'scikit-learn',
'seaborn',
],
)
if __name__ == '__main__':
main()