mbdyn-lexer 0.0.2__tar.gz → 0.0.3__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.
- {mbdyn_lexer-0.0.2 → mbdyn_lexer-0.0.3}/PKG-INFO +3 -25
- mbdyn_lexer-0.0.3/README.md +1 -0
- mbdyn_lexer-0.0.3/README.md.backup +62 -0
- {mbdyn_lexer-0.0.2 → mbdyn_lexer-0.0.3}/pyproject.toml +11 -3
- mbdyn_lexer-0.0.2/README.md +0 -24
- mbdyn_lexer-0.0.2/pyproject.toml~ +0 -24
- {mbdyn_lexer-0.0.2 → mbdyn_lexer-0.0.3}/src/__init__.py +0 -0
- {mbdyn_lexer-0.0.2 → mbdyn_lexer-0.0.3}/src/mbdynlexer.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mbdyn_lexer
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.3
|
4
4
|
Summary: Pygments Lexer Class for MBDyn Inputfiles
|
5
5
|
Project-URL: Homepage, https://gitlab.com/musipadcom/mbdyn-lexer
|
6
6
|
Project-URL: Issues, https://gitlab.com/musipadcom/mbdyn-lexer/issues
|
@@ -10,29 +10,7 @@ License-Expression: GPL-3.0-or-later
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
12
12
|
Requires-Python: >=3.8
|
13
|
+
Requires-Dist: pygments
|
13
14
|
Description-Content-Type: text/markdown
|
14
15
|
|
15
|
-
|
16
|
-
|
17
|
-
## Description
|
18
|
-
Pygments Lexer Class for MBDyn Inputfiles.
|
19
|
-
|
20
|
-
|
21
|
-
## Installation
|
22
|
-
Coming soon.
|
23
|
-
|
24
|
-
## Usage
|
25
|
-
Coming soon.
|
26
|
-
|
27
|
-
## Support
|
28
|
-
Coming soon.
|
29
|
-
|
30
|
-
## Authors and acknowledgment
|
31
|
-
Coming soon.
|
32
|
-
|
33
|
-
## License
|
34
|
-
GNU GENERAL PUBLIC LICENSE
|
35
|
-
Version 3, 29 June 2007
|
36
|
-
|
37
|
-
## Project status
|
38
|
-
Coming soon.
|
16
|
+
A Pygments lexer for MBDyn inputfiles.
|
@@ -0,0 +1 @@
|
|
1
|
+
A Pygments lexer for MBDyn inputfiles.
|
@@ -0,0 +1,62 @@
|
|
1
|
+
A Pygments lexer for MBDyn inputfiles, featuring:
|
2
|
+
|
3
|
+
## Features
|
4
|
+
- c-style comments
|
5
|
+
-
|
6
|
+
Pygments lexer class for MBDyn inputfile featuring:
|
7
|
+
c-style comments
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
## Installation
|
12
|
+
Coming soon.
|
13
|
+
|
14
|
+
## Usage
|
15
|
+
Coming soon.
|
16
|
+
|
17
|
+
## Support
|
18
|
+
Coming soon.
|
19
|
+
|
20
|
+
## Authors and acknowledgment
|
21
|
+
Coming soon.
|
22
|
+
|
23
|
+
## License
|
24
|
+
GNU GENERAL PUBLIC LICENSE
|
25
|
+
Version 3, 29 June 2007
|
26
|
+
|
27
|
+
## Project status
|
28
|
+
Coming soon.
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
# Project Title
|
35
|
+
|
36
|
+

|
37
|
+
|
38
|
+
## Description
|
39
|
+
|
40
|
+
This project is a **simple web application** that allows users to track their daily tasks. It is built using **React** and **Node.js**.
|
41
|
+
|
42
|
+
## Features
|
43
|
+
|
44
|
+
- **User Authentication**: Secure login and registration.
|
45
|
+
- **Task Management**: Create, update, and delete tasks.
|
46
|
+
- **Responsive Design**: Works on both desktop and mobile devices.
|
47
|
+
- **Real-time Updates**: Uses WebSockets for real-time task updates.
|
48
|
+
|
49
|
+
## Table of Contents
|
50
|
+
|
51
|
+
1. [Installation](#installation)
|
52
|
+
2. [Usage](#usage)
|
53
|
+
3. [Contributing](#contributing)
|
54
|
+
4. [License](#license)
|
55
|
+
|
56
|
+
## Installation
|
57
|
+
|
58
|
+
To get started with this project, follow these steps:
|
59
|
+
|
60
|
+
1. Clone the repository:
|
61
|
+
```bash
|
62
|
+
git clone https://github.com/username/repo.git
|
@@ -4,7 +4,8 @@ build-backend = "hatchling.build"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "mbdyn_lexer"
|
7
|
-
version = "0.0.
|
7
|
+
version = "0.0.3"
|
8
|
+
dependencies = ["pygments"]
|
8
9
|
authors = [
|
9
10
|
{name = "Andre Zettel", email = "musipadcom@gmail.com"},
|
10
11
|
]
|
@@ -21,9 +22,16 @@ classifiers = [
|
|
21
22
|
license = "GPL-3.0-or-later"
|
22
23
|
license-files = ["LICEN[CS]E*"]
|
23
24
|
|
25
|
+
[project.packages]
|
26
|
+
include = ["src"]
|
27
|
+
|
28
|
+
[tool.hatch.build.targets.wheel]
|
29
|
+
packages = ["src"]
|
30
|
+
|
31
|
+
[project.entry-points."pygments.lexers"]
|
32
|
+
mbdynlexer = "src.mbdynlexer:MBDynLexer"
|
33
|
+
|
24
34
|
[project.urls]
|
25
35
|
Homepage = "https://gitlab.com/musipadcom/mbdyn-lexer"
|
26
36
|
Issues = "https://gitlab.com/musipadcom/mbdyn-lexer/issues"
|
27
37
|
|
28
|
-
[tool.hatch.build.targets.wheel]
|
29
|
-
packages = ["mbdynlexer"]
|
mbdyn_lexer-0.0.2/README.md
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
# mbdyn-lexer
|
2
|
-
|
3
|
-
## Description
|
4
|
-
Pygments Lexer Class for MBDyn Inputfiles.
|
5
|
-
|
6
|
-
|
7
|
-
## Installation
|
8
|
-
Coming soon.
|
9
|
-
|
10
|
-
## Usage
|
11
|
-
Coming soon.
|
12
|
-
|
13
|
-
## Support
|
14
|
-
Coming soon.
|
15
|
-
|
16
|
-
## Authors and acknowledgment
|
17
|
-
Coming soon.
|
18
|
-
|
19
|
-
## License
|
20
|
-
GNU GENERAL PUBLIC LICENSE
|
21
|
-
Version 3, 29 June 2007
|
22
|
-
|
23
|
-
## Project status
|
24
|
-
Coming soon.
|
@@ -1,24 +0,0 @@
|
|
1
|
-
[build-system]
|
2
|
-
requires = ["hatchling"]
|
3
|
-
build-backend = "hatchling.build"
|
4
|
-
|
5
|
-
[project]
|
6
|
-
name = "mbdyn_lexer"
|
7
|
-
version = "0.0.1"
|
8
|
-
authors = [
|
9
|
-
{ name="Andre Zettel", email="musipadcom@gmail.com" },
|
10
|
-
]
|
11
|
-
description = "Pygments Lexer Class for MBDyn Inputfiles"
|
12
|
-
readme = "README.md"
|
13
|
-
requires-python = ">=3.8"
|
14
|
-
classifiers = [
|
15
|
-
"PluginProgramming Language :: Python :: 3",
|
16
|
-
"Operating System :: OS Independent",
|
17
|
-
"Topic :: Plugin",
|
18
|
-
]
|
19
|
-
license = "GPL-3.0-or-later"
|
20
|
-
license-files = ["LICEN[CS]E*"]
|
21
|
-
|
22
|
-
[project.urls]
|
23
|
-
Homepage = "https://gitlab.com/musipadcom/mbdyn-lexer"
|
24
|
-
Issues = "https://gitlab.com/musipadcom/mbdyn-lexer/issues"
|
File without changes
|
File without changes
|