-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (30 loc) · 953 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (30 loc) · 953 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
26
27
28
29
30
31
32
33
#!/usr/bin/env python3
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="hepaquery", # Replace with your own username
version="0.0.1",
author="almaaan",
author_email="almaan@kth.se",
description="Functions for spatial analysis of ST liver data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/almaan/ankarliver",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: Tested on Mac OS and Linux",
],
python_requires='>=3.7',
install_requires=[
"scikit-misc",
"numpy>=1.19.0",
"pandas>=1.0.0",
"anndata>=0.7.5",
"scipy>=1.5.4",
"scikit-learn>=0.23.2 ",
"matplotlib>=3.3.3",
]
)