mdctl 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mdctl-0.0.1/PKG-INFO +20 -0
- mdctl-0.0.1/README.md +2 -0
- mdctl-0.0.1/mdctl.egg-info/PKG-INFO +20 -0
- mdctl-0.0.1/mdctl.egg-info/SOURCES.txt +9 -0
- mdctl-0.0.1/mdctl.egg-info/dependency_links.txt +1 -0
- mdctl-0.0.1/mdctl.egg-info/entry_points.txt +2 -0
- mdctl-0.0.1/mdctl.egg-info/top_level.txt +1 -0
- mdctl-0.0.1/mdctl.py +13 -0
- mdctl-0.0.1/pyproject.toml +3 -0
- mdctl-0.0.1/setup.cfg +4 -0
- mdctl-0.0.1/setup.py +23 -0
mdctl-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mdctl
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: MDaaS CLI Tool
|
|
5
|
+
Author: Xavier Cui
|
|
6
|
+
Author-email: xaviercui@example.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.7
|
|
11
|
+
Description-Content-Type: text/plain
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: author-email
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: description
|
|
16
|
+
Dynamic: description-content-type
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
MDaaS CLI Tool for molecular dynamics service.
|
mdctl-0.0.1/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mdctl
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: MDaaS CLI Tool
|
|
5
|
+
Author: Xavier Cui
|
|
6
|
+
Author-email: xaviercui@example.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.7
|
|
11
|
+
Description-Content-Type: text/plain
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: author-email
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: description
|
|
16
|
+
Dynamic: description-content-type
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
MDaaS CLI Tool for molecular dynamics service.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mdctl
|
mdctl-0.0.1/mdctl.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
2
|
+
|
|
3
|
+
def main():
|
|
4
|
+
print("=" * 50)
|
|
5
|
+
print("📦 mdctl - 分子动力学 CLI 工具集")
|
|
6
|
+
print("🔗 官方网站: https://github.com/iwillsky/mdctl")
|
|
7
|
+
print("✅ CLI 请从 GitHub Release 下载 .whl 安装")
|
|
8
|
+
print("=" * 50)
|
|
9
|
+
#print(f"\n当前占位版本: {__version__}")
|
|
10
|
+
#print("用于 PyPI 占坑,保护项目名称")
|
|
11
|
+
|
|
12
|
+
if __name__ == "__main__":
|
|
13
|
+
main()
|
mdctl-0.0.1/setup.cfg
ADDED
mdctl-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
from setuptools import setup
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="mdctl",
|
|
5
|
+
version="0.0.1",
|
|
6
|
+
author="Xavier Cui",
|
|
7
|
+
author_email="xaviercui@example.com",
|
|
8
|
+
description="MDaaS CLI Tool",
|
|
9
|
+
long_description="MDaaS CLI Tool for molecular dynamics service.", # 直接写一句话,不用README
|
|
10
|
+
long_description_content_type="text/plain",
|
|
11
|
+
py_modules=["mdctl"],
|
|
12
|
+
classifiers=[
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Operating System :: OS Independent",
|
|
16
|
+
],
|
|
17
|
+
python_requires=">=3.7",
|
|
18
|
+
entry_points={
|
|
19
|
+
"console_scripts": [
|
|
20
|
+
"mdctl = mdctl:main",
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
)
|