-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 751 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name="cytobulk",
version="0.1.0",
author="Your Name",
author_email="your.email@example.com",
description="CytoBulk: A comprehensive toolkit for spatial transcriptomics analysis",
long_description=open("README.md").read() if open("README.md") else "",
long_description_content_type="text/markdown",
url="https://github.com/kristaxying/CytoBulk",
packages=find_packages(),
python_requires=">=3.10",
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3.10",
],
)