forked from MDhewei/protiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·36 lines (34 loc) · 1.1 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on Wed Jan 3 14:14:06 2019
Setup script for ProTiler
@author: Wei He
@email: [email protected]
"""
from setuptools import setup
import re
def main():
version = re.search('^__version__\s*=\s*"(.*)"',open('bin/protiler').read(), re.M).group(1)
setup(name='ProTiler',
version=version,
author='Wei He, Liang Zhang, Oscar Villarreal',
author_email='[email protected]',
description="Call HS regions from CRISPR tiling screen data and predict HS region from common protein features",
include_package_data=True,
packages=['ProTiler'],
package_dir={'ProTiler':'ProTiler'},
package_data={'ProTiler':['StaticFiles/*']},
url='http://mageck.sourceforge.net',
scripts=['bin/protiler'],
install_requires=[
'numpy',
'pandas',
'matplotlib',
'sklearn',
'argparse',
'seaborn'],
zip_safe = True
)
if __name__ == '__main__':
main()