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 +4 -0
- deno-0.0.1/pyproject.toml +11 -0
- deno-0.0.1/src/__init__.py +1 -0
- deno-0.0.0/PKG-INFO +0 -14
- deno-0.0.0/deno/__init__.py +0 -0
- deno-0.0.0/deno.egg-info/PKG-INFO +0 -14
- deno-0.0.0/deno.egg-info/SOURCES.txt +0 -6
- deno-0.0.0/deno.egg-info/dependency_links.txt +0 -1
- deno-0.0.0/deno.egg-info/top_level.txt +0 -1
- deno-0.0.0/setup.cfg +0 -4
- deno-0.0.0/setup.py +0 -28
deno-0.0.1/PKG-INFO
ADDED
|
@@ -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
|
deno-0.0.0/deno/__init__.py
DELETED
|
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 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
deno
|
deno-0.0.0/setup.cfg
DELETED
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
|
-
)
|