mystmd 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.
mystmd-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 ExecutableBookProject
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.
mystmd-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.1
2
+ Name: mystmd
3
+ Version: 0.0.1
4
+ Summary: MyST Markdown
5
+ Home-page: https://myst-tools.org
6
+ Author: Steve Purves
7
+ Author-email: stevejpurves@gmail.com
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3.9
11
+ Classifier: Topic :: Text Processing :: Markup
12
+ Classifier: Intended Audience :: Education
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Intended Audience :: Information Technology
15
+ Requires-Python: >=3.9
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+
19
+ # mystmd
20
+
21
+ Markedly Restructured Text - [myst.tools](https://myst.tools)
mystmd-0.0.1/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # mystmd
2
+
3
+ Markedly Restructured Text - [myst.tools](https://myst.tools)
@@ -0,0 +1,2 @@
1
+ def help():
2
+ print("Visit https://myst.tools for more information")
@@ -0,0 +1 @@
1
+ __version__ = VERSION = "0.0.1"
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.1
2
+ Name: mystmd
3
+ Version: 0.0.1
4
+ Summary: MyST Markdown
5
+ Home-page: https://myst-tools.org
6
+ Author: Steve Purves
7
+ Author-email: stevejpurves@gmail.com
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Programming Language :: Python :: 3.9
11
+ Classifier: Topic :: Text Processing :: Markup
12
+ Classifier: Intended Audience :: Education
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Intended Audience :: Information Technology
15
+ Requires-Python: >=3.9
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+
19
+ # mystmd
20
+
21
+ Markedly Restructured Text - [myst.tools](https://myst.tools)
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ setup.cfg
4
+ setup.py
5
+ mystmd/__init__.py
6
+ mystmd/version.py
7
+ mystmd.egg-info/PKG-INFO
8
+ mystmd.egg-info/SOURCES.txt
9
+ mystmd.egg-info/dependency_links.txt
10
+ mystmd.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ mystmd
mystmd-0.0.1/setup.cfg ADDED
@@ -0,0 +1,8 @@
1
+ [metadata]
2
+ description-file = README.md
3
+ version = attr: mystmd.__version__
4
+
5
+ [egg_info]
6
+ tag_build =
7
+ tag_date = 0
8
+
mystmd-0.0.1/setup.py ADDED
@@ -0,0 +1,35 @@
1
+ import sys
2
+ import os
3
+ import setuptools
4
+
5
+ sys.path[0:0] = ["mystmd"]
6
+ from version import __version__
7
+
8
+ from pathlib import Path
9
+
10
+ this_directory = Path(__file__).parent
11
+ long_description = (this_directory / "README.md").read_text()
12
+
13
+ setuptools.setup(
14
+ name="mystmd",
15
+ description="MyST Markdown",
16
+ long_description=long_description,
17
+ long_description_content_type="text/markdown",
18
+ classifiers=[
19
+ "Development Status :: 4 - Beta",
20
+ "License :: OSI Approved :: MIT License",
21
+ "Programming Language :: Python :: 3.9",
22
+ "Topic :: Text Processing :: Markup",
23
+ "Intended Audience :: Education",
24
+ "Intended Audience :: Science/Research",
25
+ "Intended Audience :: Information Technology",
26
+ ],
27
+ url="https://myst-tools.org",
28
+ version=__version__,
29
+ author="Steve Purves",
30
+ author_email="stevejpurves@gmail.com",
31
+ packages=setuptools.find_packages(exclude=("tests",)),
32
+ include_package_data=True,
33
+ install_requires=[],
34
+ python_requires=">=3.9",
35
+ )