Commit 9ee13d75 authored by Yan Zhaojun's avatar Yan Zhaojun
Browse files

update setup.py

parent 703f7760
Loading
Loading
Loading
Loading
Loading

=5.9

0 → 100644
+3 −0
Original line number Diff line number Diff line
Requirement already satisfied: PyQt5 in /home/yan/anaconda3/lib/python3.8/site-packages (5.15.10)
Requirement already satisfied: PyQt5-sip<13,>=12.13 in /home/yan/anaconda3/lib/python3.8/site-packages (from PyQt5) (12.13.0)
Requirement already satisfied: PyQt5-Qt5>=5.15.2 in /home/yan/anaconda3/lib/python3.8/site-packages (from PyQt5) (5.15.2)
+3365 −3069

File changed.

Preview size limit exceeded, changes collapsed.

+47 −37
Original line number Diff line number Diff line
import setuptools

with open("README.md", "r") as fh:
    long_description = fh.read()
# 读取README.md作为长描述
with open("README.md", "r") as f:
    long_description = f.read()

# 读取依赖列表requirements.txt
# 忽略#开头或者版本号不明确指定的条目
with open("requirements.txt", "r") as f:
    requirements = [
        req.strip()
        for req in f.readlines()
        if not req.startswith("#") and req.__contains__("~=") 
    ]

setuptools.setup(
    name='csst_ifs_sim',