protocol-orzatty 0.1.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.
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: protocol-orzatty
3
+ Version: 0.1.1
4
+ Summary: Protocol Orzatty P2P Python Bindings (Native FFI)
5
+ Home-page: https://orzatty.com
6
+ Author: Dylan Orzatty
7
+ Dynamic: author
8
+ Dynamic: home-page
9
+ Dynamic: summary
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: protocol-orzatty
3
+ Version: 0.1.1
4
+ Summary: Protocol Orzatty P2P Python Bindings (Native FFI)
5
+ Home-page: https://orzatty.com
6
+ Author: Dylan Orzatty
7
+ Dynamic: author
8
+ Dynamic: home-page
9
+ Dynamic: summary
@@ -0,0 +1,5 @@
1
+ setup.py
2
+ protocol_orzatty.egg-info/PKG-INFO
3
+ protocol_orzatty.egg-info/SOURCES.txt
4
+ protocol_orzatty.egg-info/dependency_links.txt
5
+ protocol_orzatty.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,14 @@
1
+ from setuptools import setup
2
+
3
+ setup(
4
+ name="protocol-orzatty",
5
+ version="0.1.1",
6
+ description="Protocol Orzatty P2P Python Bindings (Native FFI)",
7
+ author="Dylan Orzatty",
8
+ url="https://orzatty.com",
9
+ py_modules=["po"],
10
+ package_data={
11
+ "": ["*.so", "*.dll", "*.dylib"]
12
+ },
13
+ include_package_data=True,
14
+ )