-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 1.02 KB
/
setup.py
File metadata and controls
26 lines (21 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="DeepTalk_ST", # 用自己的名替换其中的YOUR_USERNAME_
version="0.0.12", #包版本号,便于维护版本
author="WenyiYang", #作者,可以写自己的姓名
author_email="wenyiyang22@163.com", #作者联系方式,可写自己的邮箱地址
description="Cell-cell communication prediction for ST data ",#包的简述
long_description=long_description, #包的详细介绍,一般在README.md文件内
long_description_content_type="text/markdown",
url="https://github.com/xiaoshaziydy/DeepTalktest", #自己项目地址,比如github的项目地址
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6', #对python的最低版本要求
)