-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 909 Bytes
/
setup.py
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
26
27
28
29
30
31
32
33
from setuptools import find_packages, setup
# First update the version in shoji/_version.py, then:
# cd ~/shoji (the directory where shoji resides)
# rm -r dist (otherwise twine will upload the oldest build!)
# python setup.py sdist
# twine upload dist/*
# pylint: disable=exec-used
__version__ = '0.0.0'
exec(open('shoji/_version.py').read())
setup(
name="shoji",
version=__version__,
packages=find_packages(),
python_requires='>=3.7',
install_requires=[
"blosc",
"tqdm",
"foundationdb==6.3.24",
"loompy"
],
# metadata for upload to PyPI
author="Linnarsson Lab",
author_email="[email protected]",
description="Python API for shoji, a tensor database",
license="BSD",
keywords="shoji tensor omics transcriptomics bioinformatics microscopy",
url="https://github.com/linnarsson-lab/shoji",
download_url=f"https://github.com/linnarsson-lab/shoji/archive/{__version__}.tar.gz",
)