Skip to content

Commit

Permalink
Hotfix FileNotFoundError for mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
tstannius committed Mar 9, 2020
1 parent 7a6a427 commit 0447c9a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed
### Fixed

## [1.1.1] – 2020-03-09
### Fixed
* FileNotFoundError for mapping functions.

## [1.1.0] – 2020-02-27
### Added
* Function to parse input, `utils.parse_input()`
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Exclude everything not needed for importing, building, and tests
include *.txt.gz
prune docs
4 changes: 4 additions & 0 deletions cellex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
"Tobias O. Stannius",
])

__email__ = ', '.join([
'stannius@sund.ku.dk',
])

# Load CELLEX modules
from . import metrics
from . import plotting
Expand Down
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,21 @@
from setuptools import find_packages, setup

try:
from cellex import __author__
from cellex import __author__, __email__
except ImportError:
__author__ = ""
__author__ = __email__ = ""

setup(
name="cellex",
version="1.1.0",
version="1.1.1",
author=__author__,
author_email=__email__,
description="Compute single-cell cell-type expression specificity",
long_description=Path('README.md').read_text('utf-8'),
long_description_content_type="text/markdown",
url="https://github.com/perslab/CELLEX",
packages=find_packages(),
package_data={'': ['*.txt.gz']},
include_package_data=True,
install_requires=[
l.strip() for l in
Path("requirements.txt").read_text("utf-8").splitlines()
Expand All @@ -31,6 +32,4 @@
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]


)

0 comments on commit 0447c9a

Please sign in to comment.