-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (28 loc) · 1010 Bytes
/
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
#!/usr/bin/env python
"""Description
Setup script for SCIG: Specifying the Cell Identity Genes in Single-cells
@author: Kulandaisamy Arulsamy
@contact: [email protected]
"""
import sys
from setuptools import setup, find_packages
def main():
setup(name="SCIG",
version="1.0",
description="SCIG: Specifying the Cell Identity Genes in Single-cells",
author='Kulandaisamy Arulsamy',
author_email='[email protected]',
packages=find_packages(),
url='https://github.com/kulansam/SCIG',
scripts=['src/SCIG.py',
],
include_package_data=True,
package_data={
'': ['data/*.pkl', 'test/*.txt'],
},
license='MIT',
install_requires=[
'numpy','pandas','qnorm','regex','scikit-learn','rpy2','bioinfokit','anndata','scanpy','argparse','scipy']
)
if __name__ == '__main__':
main()