missionpanel 1.0__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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Howard Yin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.1
2
+ Name: missionpanel
3
+ Version: 1.0
4
+ Summary: A mission panel
5
+ Home-page: https://github.com/yindaheng98/missionpanel
6
+ Author: yindaheng98
7
+ Author-email: yindaheng98@gmail.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+
16
+ # missionnel
17
+
18
+ Just a mission panel.
19
+
@@ -0,0 +1,3 @@
1
+ # missionnel
2
+
3
+ Just a mission panel.
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.1
2
+ Name: missionpanel
3
+ Version: 1.0
4
+ Summary: A mission panel
5
+ Home-page: https://github.com/yindaheng98/missionpanel
6
+ Author: yindaheng98
7
+ Author-email: yindaheng98@gmail.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+
16
+ # missionnel
17
+
18
+ Just a mission panel.
19
+
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ missionpanel.egg-info/PKG-INFO
5
+ missionpanel.egg-info/SOURCES.txt
6
+ missionpanel.egg-info/dependency_links.txt
7
+ missionpanel.egg-info/requires.txt
8
+ missionpanel.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ sqlalchemy>=2
@@ -0,0 +1 @@
1
+ missionpanel
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,32 @@
1
+ #!/usr/bin/env python
2
+ # coding: utf-8
3
+
4
+ from setuptools import setup
5
+
6
+ with open("README.md", "r", encoding='utf8') as fh:
7
+ long_description = fh.read()
8
+
9
+ package_dir = {
10
+ 'missionpanel': 'missionpanel',
11
+ }
12
+
13
+ setup(
14
+ name='missionpanel',
15
+ version='1.0',
16
+ author='yindaheng98',
17
+ author_email='yindaheng98@gmail.com',
18
+ url='https://github.com/yindaheng98/missionpanel',
19
+ description=u'A mission panel',
20
+ long_description=long_description,
21
+ long_description_content_type="text/markdown",
22
+ package_dir=package_dir,
23
+ packages=[key for key in package_dir],
24
+ classifiers=[
25
+ "Programming Language :: Python :: 3",
26
+ "License :: OSI Approved :: MIT License",
27
+ "Operating System :: OS Independent",
28
+ ],
29
+ install_requires=[
30
+ 'sqlalchemy>=2'
31
+ ]
32
+ )