forked from parashardhapola/scarf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d80970
commit 4ce5ba1
Showing
8 changed files
with
61 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.28.12 | ||
0.29.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
jinja2 | ||
jedi>=0.17.0 | ||
myst-parser>=0.13.7 | ||
myst-nb>=0.12.3 | ||
sphinx>=3.5.4 | ||
sphinx_autodoc_typehints>=1.10.1 | ||
sphinx-book-theme>=0.0.35 | ||
sphinx-copybutton>=0.2.12 | ||
sphinx-external-toc>=0.2.1 | ||
sphinx-tabs>=0.3.1 | ||
topacedo>=0.2.6 | ||
nbclient<0.6 | ||
jedi | ||
myst-parser | ||
myst-nb | ||
sphinx | ||
sphinx_autodoc_typehints | ||
sphinx-book-theme | ||
sphinx-copybutton | ||
sphinx-external-toc | ||
sphinx-tabs | ||
topacedo | ||
nbclient |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
requests | ||
gensim | ||
kneed | ||
matplotlib | ||
seaborn | ||
cmocean | ||
datashader | ||
ipython-autotime | ||
ipywidgets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,13 @@ | |
import glob | ||
|
||
|
||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
def read(f_name): | ||
with open(os.path.join(os.path.dirname(__file__), f_name)) as fp: | ||
return fp.read().rstrip("\n") | ||
|
||
|
||
def read_lines(f_name): | ||
return read(f_name).split("\n") | ||
|
||
|
||
class PostInstallCommand(install): | ||
|
@@ -31,34 +36,41 @@ def run(self): | |
|
||
|
||
if __name__ == "__main__": | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: BSD License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
] | ||
keywords = ["store"] | ||
version = open("VERSION").readline().rstrip("\n") | ||
version = read("VERSION").rstrip("\n") | ||
core_requirements = read_lines('requirements.txt') | ||
extra_requirements = read_lines('requirements_extra.txt') | ||
|
||
install_requires = ( | ||
["pybind11"] | ||
+ [x.strip() for x in open("requirements.txt")] | ||
+ ["dask[array]", "dask[dataframe]"] | ||
) | ||
dependency_links = [] | ||
|
||
setup( | ||
name="scarf", | ||
description="Scarf", | ||
version=version, | ||
python_requires='>=3.11', | ||
description="Scarf: A scalable tool for single-cell omics data analysis", | ||
long_description=read("pypi_README.rst"), | ||
long_description_content_type="text/x-rst", | ||
author="Parashar Dhapola", | ||
author_email="[email protected]", | ||
url="https://github.com/parashardhapola/scarf", | ||
license="BSD 3-Clause", | ||
classifiers=classifiers, | ||
keywords=keywords, | ||
install_requires=install_requires, | ||
dependency_links=dependency_links, | ||
version=version, | ||
packages=find_packages(), | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: BSD License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.12", | ||
], | ||
keywords=['single-cell'], | ||
install_requires=core_requirements, | ||
extras_require={ | ||
'extra': extra_requirements, | ||
}, | ||
packages=find_packages(exclude=['tests*']), | ||
include_package_data=False, | ||
cmdclass={"install": PostInstallCommand}, | ||
) |