cppmake 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.
cppmake-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: cppmake
3
+ Version: 0.0.1
4
+ Summary: none
5
+ Home-page: https://github.com/anonymouspc/cppmake
6
+ Author: {'name': 'anonymouspc', 'email': 'shyeyian@petalmail.com'}
7
+ Author-email: anonymouspc <shyeyian@petalmail.com>
8
+ License-Expression: MIT
9
+ Project-URL: Homepage, https://github.com/anonymouspc/cppmake
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.13
12
+ Description-Content-Type: text/markdown
13
+ License-File: license.txt
14
+ Dynamic: author
15
+ Dynamic: home-page
16
+ Dynamic: license-file
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: cppmake
3
+ Version: 0.0.1
4
+ Summary: none
5
+ Home-page: https://github.com/anonymouspc/cppmake
6
+ Author: {'name': 'anonymouspc', 'email': 'shyeyian@petalmail.com'}
7
+ Author-email: anonymouspc <shyeyian@petalmail.com>
8
+ License-Expression: MIT
9
+ Project-URL: Homepage, https://github.com/anonymouspc/cppmake
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.13
12
+ Description-Content-Type: text/markdown
13
+ License-File: license.txt
14
+ Dynamic: author
15
+ Dynamic: home-page
16
+ Dynamic: license-file
@@ -0,0 +1,8 @@
1
+ license.txt
2
+ pyproject.toml
3
+ readme.md
4
+ setup.py
5
+ cppmake.egg-info/PKG-INFO
6
+ cppmake.egg-info/SOURCES.txt
7
+ cppmake.egg-info/dependency_links.txt
8
+ cppmake.egg-info/top_level.txt
File without changes
@@ -0,0 +1,17 @@
1
+ [build-system]
2
+ requires = ["setuptools >= 77.0.3"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "cppmake"
7
+ version = "0.0.1"
8
+ authors = [{name = "anonymouspc", email = "shyeyian@petalmail.com"}]
9
+ description = "none"
10
+ readme = "readme.md"
11
+ requires-python = ">=3.13"
12
+ classifiers = ["Programming Language :: Python :: 3"]
13
+ license = "MIT"
14
+ license-files = ["license.txt"]
15
+
16
+ [project.urls]
17
+ Homepage = "https://github.com/anonymouspc/cppmake"
File without changes
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
cppmake-0.0.1/setup.py ADDED
@@ -0,0 +1,20 @@
1
+ from setuptools import setup, find_packages
2
+ from time import time
3
+
4
+ setup(
5
+ name="cppmake",
6
+ version=f"{time()}",
7
+ packages=find_packages(include=["cppmake", "cppmake.*"]),
8
+ install_requires=[],
9
+ entry_points={
10
+ "console_scripts": [
11
+ "cppmake=cppmake.build:main",
12
+ ],
13
+ },
14
+ author={
15
+ "name": "anonymouspc",
16
+ "email": "shyeyian@petalmail.com"
17
+ },
18
+ url="https://github.com/anonymouspc/cppmake",
19
+ license=""
20
+ )