-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1021 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 1021 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
from setuptools import setup, find_packages
# Load requirements from requirements.txt
with open("requirements.txt", "r") as fh:
requirements = fh.read().splitlines()
setup(
name="codi_bg",
version="0.1.3",
description="CoDi - Contrastive Distance reference-based cell type annotation for spatial transcriptomics.",
url="https://github.com/stomics/codi",
author="Vladimir Kovacevic",
author_email="vladimirkovacevic@genomics.cn",
license="MIT",
package_dir={"": "core"}, # Specifies that packages are under the core directory
# packages=find_packages(where="core"), # Finds packages in the core directory
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'CoDi=CoDi:main', # Points to the main function in CoDi.py
],
},
python_requires='>=3.8',
)