forked from mohammadghorbani28/Stereopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.41 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
#!/usr/bin/env python3
# coding: utf-8
"""
@author: Junhao Xu [email protected]
@last modified by: Junhao Xu
@file:setup.py
@time:2023/04/28
"""
from setuptools import setup, find_packages
import sys
from pathlib import Path
if sys.version_info < (3, 8):
sys.exit('stereopy requires Python >= 3.8')
setup(
name='stereopy',
version='0.12.0',
setup_requires=['setuptools_scm', 'numpy==1.21.6', 'panel', 'pytest', 'quilt3', 'scipy', 'phenograph'],
description='Spatial transcriptomic analysis in python.',
long_description=Path('README.md').read_text('utf-8'),
long_description_content_type="text/markdown",
url='https://github.com/BGIResearch/stereopy',
author='BGIResearch',
author_email='[email protected]',
python_requires='>=3.8,<3.9',
install_requires=[
l.strip() for l in Path('requirements.txt').read_text('utf-8').splitlines()
],
extras_require=dict(
visualization=['bokeh>=1.4.0'],
doc=['sphinx>=3.2'],
test=['pytest>=4.4', 'pytest-nunit'],
),
packages=find_packages(),
include_package_data=True,
classifiers=[
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Visualization',
],
)