-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
69 lines (64 loc) · 2.36 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from pathlib import Path
from setuptools import setup, find_packages
long_description = Path('README.rst').read_text('utf-8')
import os
os.environ[ 'NUMBA_CACHE_DIR' ] = '/tmp/'
try:
from sagenet import __author__, __email__
except ImportError: # Deps not yet installed
__author__ = __maintainer__ ='Elyas Heidari'
__email__ = '[email protected]'
__version__ = '0.1.2'
setup(name='sagenet',
version = "0.1.2",
description='Spatial reconstruction of dissociated single-cell data',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/MarioniLab/sagenet',
author=__author__,
author_email=__email__,
license='MIT',
platforms=["Linux", "MacOSX"],
packages=find_packages(),
zip_safe=False,
# download_url="https://github.com/MarioniLab/sagenet/archive/refs/tags/SageNet_v0.1.0.1.tar.gz",
project_urls={
"Documentation": "https://sagenet.readthedocs.io/en/latest",
"Source Code": "https://github.com/MarioniLab/sagenet",
},
install_requires=[l.strip() for l in Path("requirements.txt").read_text("utf-8").splitlines()],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Typing :: Typed",
# "Programming Language :: Python :: 3",
# "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Environment :: Console",
"Framework :: Jupyter",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
],
doc=[
'sphinx',
'sphinx_rtd_theme',
'sphinx_autodoc_typehints',
'typing_extensions; python_version < "3.8"',
],
keywords=sorted(
[
"single-cell",
"bio-informatics",
"spatial transcriptomics",
"spatial data analysis",
"single-cell data analysis",
]
),
)