1 Star 0 Fork 1

tanysky/orbitdeterminator

forked from mileba/orbitdeterminator 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
hornig 提交于 2021-03-16 03:50 +08:00 . fixes wiener filter. adds vpython to req
from setuptools import *
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = fh.readlines()
setup(
name="orbitdeterminator",
packages=find_packages(),
version="1.0",
license="MIT",
author="aerospaceresearch.net community",
author_email="orbitdeterminator@aerospaceresearch.net",
url="http://orbit-determinator.readthedocs.io/en/latest/",
description="__orbitdeterminator__ is a package written in python3 for determining orbit of satellites based " \
"on positional data. Various filtering and determination algorithms are available for satellite " \
"operators to choose from. ",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[req for req in requirements if req[:2] != "# "and req[:4] != "http"],
dependency_links=[req for req in requirements if req[:4] != "http"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.5',
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tanysky/orbitdeterminator.git
git@gitee.com:tanysky/orbitdeterminator.git
tanysky
orbitdeterminator
orbitdeterminator
master

搜索帮助