forked from asntech/improse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (47 loc) · 1.44 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
#!/usr/bin/env python
"""
This is a setup script for imPROSE -- Integrated Methods for Prediction of Super-Enhancers
This code is free software; you can redistribute it and/or modify it under the terms of the
BSD License (see the file LICENSE.md included with the distribution).
@version: 1.0
@author: Aziz Khan
@email: [email protected]
"""
import os
from distutils.core import setup
from setuptools import find_packages
#from improse import __version__
#VERSION = __import__("improse").__version__
VERSION = '1.2'
CLASSIFIERS = [
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
install_requires = [
'scipy',
'numpy',
'scikit-learn',
'pandas',
'argparse'
]
setup(
name="improse",
description="Integrated Methods for Prediction of Super-Enhancers",
version=VERSION,
author="Aziz Khan",
#Keywords= "bioinformatics,genomics",
author_email="[email protected]",
url="https://github.com/asntech/improse",
package_dir={'improse': 'improse'},
packages=['improse'],
scripts=['improse/improse',
],
package_data={'improse': ['improse/data/*.csv']},
include_package_data=True,
install_requires = install_requires,
classifiers=CLASSIFIERS,
)