Skip to content

Commit

Permalink
package uploaded to PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaozhongLiu committed Aug 13, 2023
1 parent eaa6e00 commit 45841ff
Show file tree
Hide file tree
Showing 24 changed files with 3,502 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added dist/treasmo-1.0.1-py3-none-any.whl
Binary file not shown.
Binary file added dist/treasmo-1.0.1.tar.gz
Binary file not shown.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="treasmo",
version="1.0.1",
author="Chaozhong Liu",
author_email="[email protected]",
description="Transcription regulation analysis toolkit for single-cell multi-omics data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ChaozhongLiu/TREASMO",
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
),
)
15 changes: 15 additions & 0 deletions treasmo.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Metadata-Version: 2.1
Name: treasmo
Version: 1.0.1
Summary: Transcription regulation analysis toolkit for single-cell multi-omics data
Home-page: https://github.com/ChaozhongLiu/TREASMO
Author: Chaozhong Liu
Author-email: [email protected]
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# TREASMO
Transcription regulation analysis toolkit for single-cell multi-omics data
14 changes: 14 additions & 0 deletions treasmo.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
LICENSE
README.md
setup.py
treasmo/__init__.py
treasmo/core.py
treasmo/ds.py
treasmo/lee_vec.py
treasmo/moran_vec.py
treasmo/pl.py
treasmo/tl.py
treasmo.egg-info/PKG-INFO
treasmo.egg-info/SOURCES.txt
treasmo.egg-info/dependency_links.txt
treasmo.egg-info/top_level.txt
1 change: 1 addition & 0 deletions treasmo.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions treasmo.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
treasmo
Binary file added treasmo/.DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions treasmo/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
name = 'treasmo'
Loading

0 comments on commit 45841ff

Please sign in to comment.