-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsetup.py
executable file
·42 lines (40 loc) · 1.11 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
from setuptools import setup
import glob,os
def readme():
with open('README.md',encoding="utf-8") as f:
return f.read()
setup(name='scTE',
version='1.0',
description='Tool for estimating differential enrichment of Transposable Elements and other highly repetitive regions in single-cell data',
long_description=readme(),
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
python_requires=">=3.6",
keywords='..',
url='..',
author='..',
author_email='he_jiangping@grmh-gdl.cn; andrewh@sustech.edu.cn',
license='..',
packages=[
'scTE',
'scTE.miniglbase',
],
platforms=[
'Linux',
'MacOS'
],
install_requires=[
'argparse','scipy','pandas',
'numpy','anndata',
],
include_package_data=True,
zip_safe=False,
scripts=[
'bin/scTE',
'bin/scTE_build',
'bin/scTEATAC_build',
'bin/scTEATAC',
]
)