tichr 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tichr-0.1.0/PKG-INFO +29 -0
- tichr-0.1.0/setup.cfg +4 -0
- tichr-0.1.0/setup.py +49 -0
- tichr-0.1.0/tichr.egg-info/PKG-INFO +29 -0
- tichr-0.1.0/tichr.egg-info/SOURCES.txt +7 -0
- tichr-0.1.0/tichr.egg-info/dependency_links.txt +1 -0
- tichr-0.1.0/tichr.egg-info/entry_points.txt +3 -0
- tichr-0.1.0/tichr.egg-info/requires.txt +13 -0
- tichr-0.1.0/tichr.egg-info/top_level.txt +1 -0
tichr-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tichr
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: TICHR: A computational tool designed to investigate transcriptional regulation
|
|
5
|
+
Author: Jiankang Wang
|
|
6
|
+
Author-email: wangjk321@gmail.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Requires-Dist: numpy
|
|
12
|
+
Requires-Dist: pandas
|
|
13
|
+
Requires-Dist: scipy
|
|
14
|
+
Requires-Dist: matplotlib
|
|
15
|
+
Requires-Dist: seaborn
|
|
16
|
+
Requires-Dist: pyBigWig
|
|
17
|
+
Requires-Dist: scikit-learn
|
|
18
|
+
Requires-Dist: hic-straw
|
|
19
|
+
Requires-Dist: statsmodels
|
|
20
|
+
Requires-Dist: pyranges
|
|
21
|
+
Requires-Dist: tqdm
|
|
22
|
+
Requires-Dist: adjustText
|
|
23
|
+
Requires-Dist: umap-learn
|
|
24
|
+
Dynamic: author
|
|
25
|
+
Dynamic: author-email
|
|
26
|
+
Dynamic: classifier
|
|
27
|
+
Dynamic: requires-dist
|
|
28
|
+
Dynamic: requires-python
|
|
29
|
+
Dynamic: summary
|
tichr-0.1.0/setup.cfg
ADDED
tichr-0.1.0/setup.py
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='tichr',
|
|
5
|
+
version='0.1.0',
|
|
6
|
+
author='Jiankang Wang',
|
|
7
|
+
author_email='wangjk321@gmail.com',
|
|
8
|
+
description='TICHR: A computational tool designed to investigate transcriptional regulation',
|
|
9
|
+
# long_description=open('README.md', encoding='utf-8').read(),
|
|
10
|
+
# long_description_content_type='text/markdown',
|
|
11
|
+
# url='https://github.com/wangjk321/TICHR',
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
python_requires='>=3.6',
|
|
14
|
+
install_requires=[
|
|
15
|
+
"numpy",
|
|
16
|
+
"pandas",
|
|
17
|
+
"scipy",
|
|
18
|
+
"matplotlib",
|
|
19
|
+
"seaborn",
|
|
20
|
+
"pyBigWig",
|
|
21
|
+
"scikit-learn",
|
|
22
|
+
"hic-straw",
|
|
23
|
+
"statsmodels",
|
|
24
|
+
"pyranges",
|
|
25
|
+
"tqdm",
|
|
26
|
+
# "rpy2",
|
|
27
|
+
# "joblib",
|
|
28
|
+
"adjustText",
|
|
29
|
+
"umap-learn",
|
|
30
|
+
# "multiprocessing",
|
|
31
|
+
# "collections",
|
|
32
|
+
# "concurrent",
|
|
33
|
+
# "functools",
|
|
34
|
+
#这几个好像是python自带的
|
|
35
|
+
],
|
|
36
|
+
entry_points={
|
|
37
|
+
'console_scripts': [
|
|
38
|
+
'tichrtest=tichr:hello',
|
|
39
|
+
'tichr = __main__:main' # 指定命令行入口:motsi.py 中需有 main() 函数
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
classifiers=[
|
|
43
|
+
'Programming Language :: Python :: 3',
|
|
44
|
+
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
45
|
+
'Operating System :: OS Independent',
|
|
46
|
+
],
|
|
47
|
+
include_package_data=True,
|
|
48
|
+
)
|
|
49
|
+
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tichr
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: TICHR: A computational tool designed to investigate transcriptional regulation
|
|
5
|
+
Author: Jiankang Wang
|
|
6
|
+
Author-email: wangjk321@gmail.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Requires-Dist: numpy
|
|
12
|
+
Requires-Dist: pandas
|
|
13
|
+
Requires-Dist: scipy
|
|
14
|
+
Requires-Dist: matplotlib
|
|
15
|
+
Requires-Dist: seaborn
|
|
16
|
+
Requires-Dist: pyBigWig
|
|
17
|
+
Requires-Dist: scikit-learn
|
|
18
|
+
Requires-Dist: hic-straw
|
|
19
|
+
Requires-Dist: statsmodels
|
|
20
|
+
Requires-Dist: pyranges
|
|
21
|
+
Requires-Dist: tqdm
|
|
22
|
+
Requires-Dist: adjustText
|
|
23
|
+
Requires-Dist: umap-learn
|
|
24
|
+
Dynamic: author
|
|
25
|
+
Dynamic: author-email
|
|
26
|
+
Dynamic: classifier
|
|
27
|
+
Dynamic: requires-dist
|
|
28
|
+
Dynamic: requires-python
|
|
29
|
+
Dynamic: summary
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|