forked from linnarsson-lab/BoneFight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 714 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (22 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import find_packages, setup
# rm -r dist (otherwise twine will upload the oldest build!)
# python setup.py sdist
# twine upload dist/*
__version__ = '0.1.0'
setup(
name="bonefight",
version=__version__,
packages=find_packages(),
python_requires='>=3.7',
install_requires=[
"tqdm"
],
# metadata for upload to PyPI
author="Sten Linnarsson",
author_email="sten.linnarsson@ki.se",
description="Bone Fight, an algorithm for aligning omics datasets",
license="BSD",
keywords="ostomachion spatial omics transcriptomics bioinformatics",
url="https://github.com/linnarsson-lab/GeneralTangram",
download_url=f"https://github.com/linnarsson-lab/BoneFight/archive/{__version__}.tar.gz",
)