deno 0.0.0__tar.gz → 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.

Potentially problematic release.


This version of deno might be problematic. Click here for more details.

deno-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,4 @@
1
+ Metadata-Version: 2.4
2
+ Name: deno
3
+ Version: 0.0.1
4
+ License-Expression: MIT
@@ -0,0 +1,11 @@
1
+ [project]
2
+ name = "deno"
3
+ dynamic = ["version"]
4
+ license = "MIT"
5
+
6
+ [build-system]
7
+ requires = ["hatchling"]
8
+ build-backend = "hatchling.build"
9
+
10
+ [tool.hatch.version]
11
+ path = "src/__init__.py"
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
deno-0.0.0/PKG-INFO DELETED
@@ -1,14 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: deno
3
- Version: 0.0.0
4
- Summary: python ffi for deno ops
5
- Home-page: https://github.com/hayd/deno-py
6
- Author: Andy Hayden
7
- Author-email: andyhayden1@gmail.com
8
- License: MIT
9
- Description: stub
10
- Platform: UNKNOWN
11
- Classifier: License :: OSI Approved :: MIT License
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.7
14
- Description-Content-Type: text/markdown
File without changes
@@ -1,14 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: deno
3
- Version: 0.0.0
4
- Summary: python ffi for deno ops
5
- Home-page: https://github.com/hayd/deno-py
6
- Author: Andy Hayden
7
- Author-email: andyhayden1@gmail.com
8
- License: MIT
9
- Description: stub
10
- Platform: UNKNOWN
11
- Classifier: License :: OSI Approved :: MIT License
12
- Classifier: Programming Language :: Python :: 3
13
- Classifier: Programming Language :: Python :: 3.7
14
- Description-Content-Type: text/markdown
@@ -1,6 +0,0 @@
1
- setup.py
2
- deno/__init__.py
3
- deno.egg-info/PKG-INFO
4
- deno.egg-info/SOURCES.txt
5
- deno.egg-info/dependency_links.txt
6
- deno.egg-info/top_level.txt
@@ -1 +0,0 @@
1
-
@@ -1 +0,0 @@
1
- deno
deno-0.0.0/setup.cfg DELETED
@@ -1,4 +0,0 @@
1
- [egg_info]
2
- tag_build =
3
- tag_date = 0
4
-
deno-0.0.0/setup.py DELETED
@@ -1,28 +0,0 @@
1
- import pathlib
2
- from setuptools import setup
3
-
4
- # The directory containing this file
5
- HERE = pathlib.Path(__file__).parent
6
-
7
- # The text of the README file
8
- README = "stub" # (HERE / "README.md").read_text()
9
-
10
- # This call to setup() does all the work
11
- setup(
12
- name="deno",
13
- version="0.0.0",
14
- description="python ffi for deno ops",
15
- long_description=README,
16
- long_description_content_type="text/markdown",
17
- url="https://github.com/hayd/deno-py",
18
- author="Andy Hayden",
19
- author_email="andyhayden1@gmail.com",
20
- license="MIT",
21
- classifiers=[
22
- "License :: OSI Approved :: MIT License",
23
- "Programming Language :: Python :: 3",
24
- "Programming Language :: Python :: 3.7",
25
- ],
26
- packages=["deno"],
27
- include_package_data=True,
28
- )