morn 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.
morn-1.0/PKG-INFO ADDED
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: morn
3
+ Version: 1.0
4
+ Summary: A Life program by tderk, originally LPro.py and Destiny [2024]
5
+ Author-email: tderk <usvu.tech@gmail.com>
6
+ License: MIT
7
+ Requires-Python: >=3.8
8
+ Description-Content-Type: text/markdown
9
+ Provides-Extra: dev
10
+ Requires-Dist: pytest; extra == "dev"
11
+ Requires-Dist: black; extra == "dev"
12
+ Requires-Dist: flake8; extra == "dev"
@@ -0,0 +1,42 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "morn"
7
+ version = "1.0"
8
+ description = "A Life program by tderk, originally LPro.py and Destiny [2024]"
9
+ requires-python = ">=3.8"
10
+ readme = "README.md"
11
+ license = { text = "MIT" }
12
+ authors = [
13
+ { name = "tderk", email = "usvu.tech@gmail.com" }
14
+ ]
15
+
16
+ [project.scripts]
17
+ morn = "morn.scripts.main:run"
18
+ MORN = "morn.scripts.main:run"
19
+ Morn = "morn.scripts.main:run"
20
+
21
+ mor = "morn.scripts.lpro:main"
22
+ mon = "morn.scripts.lpro_s:main"
23
+
24
+ MN = "morn.scripts.main:run"
25
+ mn = "morn.scripts.main:run"
26
+
27
+ [tool.setuptools]
28
+ package-dir = {"" = "src"}
29
+
30
+ [tool.setuptools.packages.find]
31
+ where = ["src"]
32
+ include = ["morn*", "morn.*"]
33
+ exclude = ["tests*", "docs*", "venv*", "build*", "dist*", "*test*"]
34
+
35
+ [tool.setuptools.package-data]
36
+ "morn" = ["py.typed"]
37
+ "morn.scripts" = ["*.txt", "*.md", "*.json", "data/*", "logs/*"]
38
+
39
+ dependencies = []
40
+
41
+ [project.optional-dependencies]
42
+ dev = ["pytest", "black", "flake8"]
morn-1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes
@@ -0,0 +1,5 @@
1
+ import sys
2
+ import os
3
+
4
+ sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
5
+