PyTFBS 1.0.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.
- pytfbs-1.0.0/LICENSE +0 -0
- pytfbs-1.0.0/PKG-INFO +48 -0
- pytfbs-1.0.0/README.md +18 -0
- pytfbs-1.0.0/pyproject.toml +53 -0
- pytfbs-1.0.0/setup.cfg +4 -0
- pytfbs-1.0.0/src/PyTFBS/__init__.py +0 -0
- pytfbs-1.0.0/src/PyTFBS/tango.py +0 -0
- pytfbs-1.0.0/src/PyTFBS.egg-info/PKG-INFO +48 -0
- pytfbs-1.0.0/src/PyTFBS.egg-info/SOURCES.txt +11 -0
- pytfbs-1.0.0/src/PyTFBS.egg-info/dependency_links.txt +1 -0
- pytfbs-1.0.0/src/PyTFBS.egg-info/entry_points.txt +2 -0
- pytfbs-1.0.0/src/PyTFBS.egg-info/requires.txt +8 -0
- pytfbs-1.0.0/src/PyTFBS.egg-info/top_level.txt +1 -0
pytfbs-1.0.0/LICENSE
ADDED
|
File without changes
|
pytfbs-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: PyTFBS
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: PyTFBS: A Python Package for Transcription Factor Binding Site Prediction
|
|
5
|
+
Author-email: Tinghua Huang <thua45@126.com>
|
|
6
|
+
License: Acdemic
|
|
7
|
+
Project-URL: Homepage, https://github.com/thua45/pytfbs
|
|
8
|
+
Project-URL: Documentation, https://github.com/thua45/pytfbs#readme
|
|
9
|
+
Project-URL: Repository, https://github.com/thua45/pytfbs
|
|
10
|
+
Project-URL: Issues, https://github.com/thua45/pytfbs/issues
|
|
11
|
+
Keywords: PyTFBS,Transcription Factor,Binding Site
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Requires-Python: >=3.8
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
Requires-Dist: requests>=2.25.0
|
|
24
|
+
Requires-Dist: numpy>=1.21.0
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Requires-Dist: pytest>=6.0; extra == "dev"
|
|
27
|
+
Provides-Extra: test
|
|
28
|
+
Requires-Dist: pytest>=6.0; extra == "test"
|
|
29
|
+
Dynamic: license-file
|
|
30
|
+
|
|
31
|
+
# My Package
|
|
32
|
+
|
|
33
|
+
A Python package for dpredicting transcription factor binding sites.
|
|
34
|
+
|
|
35
|
+
## Installation
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pip install PyTFBS
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Usage
|
|
42
|
+
|
|
43
|
+
```python
|
|
44
|
+
import PyTFBS
|
|
45
|
+
|
|
46
|
+
result = PyTFBS.predict()
|
|
47
|
+
print(result)
|
|
48
|
+
```
|
pytfbs-1.0.0/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# My Package
|
|
2
|
+
|
|
3
|
+
A Python package for dpredicting transcription factor binding sites.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install PyTFBS
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
import PyTFBS
|
|
15
|
+
|
|
16
|
+
result = PyTFBS.predict()
|
|
17
|
+
print(result)
|
|
18
|
+
```
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "PyTFBS"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "PyTFBS: A Python Package for Transcription Factor Binding Site Prediction"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "Tinghua Huang", email = "thua45@126.com"}
|
|
13
|
+
]
|
|
14
|
+
license = {text = "Acdemic"}
|
|
15
|
+
keywords = ["PyTFBS", "Transcription Factor", "Binding Site"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.8",
|
|
22
|
+
"Programming Language :: Python :: 3.9",
|
|
23
|
+
"Programming Language :: Python :: 3.10",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
]
|
|
26
|
+
dependencies = [
|
|
27
|
+
"requests>=2.25.0",
|
|
28
|
+
"numpy>=1.21.0",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://github.com/thua45/pytfbs"
|
|
33
|
+
Documentation = "https://github.com/thua45/pytfbs#readme"
|
|
34
|
+
Repository = "https://github.com/thua45/pytfbs"
|
|
35
|
+
Issues = "https://github.com/thua45/pytfbs/issues"
|
|
36
|
+
|
|
37
|
+
[project.optional-dependencies]
|
|
38
|
+
dev = [
|
|
39
|
+
"pytest>=6.0",
|
|
40
|
+
]
|
|
41
|
+
test = [
|
|
42
|
+
"pytest>=6.0",
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
[project.scripts]
|
|
46
|
+
PyTFBS = "PyTFBS.cli:main"
|
|
47
|
+
|
|
48
|
+
[tool.setuptools]
|
|
49
|
+
packages = {find = {where = ["src"]}}
|
|
50
|
+
package-dir = {"" = "src"}
|
|
51
|
+
|
|
52
|
+
[tool.setuptools.package-data]
|
|
53
|
+
mypackage = ["*.txt", "*.json", "data/*", "templates/*"]
|
pytfbs-1.0.0/setup.cfg
ADDED
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: PyTFBS
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: PyTFBS: A Python Package for Transcription Factor Binding Site Prediction
|
|
5
|
+
Author-email: Tinghua Huang <thua45@126.com>
|
|
6
|
+
License: Acdemic
|
|
7
|
+
Project-URL: Homepage, https://github.com/thua45/pytfbs
|
|
8
|
+
Project-URL: Documentation, https://github.com/thua45/pytfbs#readme
|
|
9
|
+
Project-URL: Repository, https://github.com/thua45/pytfbs
|
|
10
|
+
Project-URL: Issues, https://github.com/thua45/pytfbs/issues
|
|
11
|
+
Keywords: PyTFBS,Transcription Factor,Binding Site
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Requires-Python: >=3.8
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
Requires-Dist: requests>=2.25.0
|
|
24
|
+
Requires-Dist: numpy>=1.21.0
|
|
25
|
+
Provides-Extra: dev
|
|
26
|
+
Requires-Dist: pytest>=6.0; extra == "dev"
|
|
27
|
+
Provides-Extra: test
|
|
28
|
+
Requires-Dist: pytest>=6.0; extra == "test"
|
|
29
|
+
Dynamic: license-file
|
|
30
|
+
|
|
31
|
+
# My Package
|
|
32
|
+
|
|
33
|
+
A Python package for dpredicting transcription factor binding sites.
|
|
34
|
+
|
|
35
|
+
## Installation
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pip install PyTFBS
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Usage
|
|
42
|
+
|
|
43
|
+
```python
|
|
44
|
+
import PyTFBS
|
|
45
|
+
|
|
46
|
+
result = PyTFBS.predict()
|
|
47
|
+
print(result)
|
|
48
|
+
```
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/PyTFBS/__init__.py
|
|
5
|
+
src/PyTFBS/tango.py
|
|
6
|
+
src/PyTFBS.egg-info/PKG-INFO
|
|
7
|
+
src/PyTFBS.egg-info/SOURCES.txt
|
|
8
|
+
src/PyTFBS.egg-info/dependency_links.txt
|
|
9
|
+
src/PyTFBS.egg-info/entry_points.txt
|
|
10
|
+
src/PyTFBS.egg-info/requires.txt
|
|
11
|
+
src/PyTFBS.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
PyTFBS
|