New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

solid

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

solid - pypi Package Compare versions

Comparing version
0.1.3
to
0.2.0
+3
-3
PKG-INFO
Metadata-Version: 1.0
Name: solid
Version: 0.1.3
Version: 0.2.0
Summary: Pythonic state machines

@@ -35,3 +35,3 @@ Home-page: http://github.com/haaksmash/solid

::
.. code-block:: python

@@ -58,3 +58,3 @@ from solid.machines import BaseMachine

::
.. code-block:: python

@@ -61,0 +61,0 @@ >>> h = HelloMachine()

@@ -24,9 +24,19 @@ #!/usr/bin/env python

from setuptools import find_packages
import os
def get_readme():
if os.path.isfile("README.txt"):
filename = "README.txt"
else:
filename = "README.rst"
with open(filename, 'r') as f:
return f.read()
setup(
name="solid",
version='0.1.3',
version='0.2.0',
description="Pythonic state machines",
long_description=open("README.txt").read(),
long_description=get_readme(),
author="Haak Saxberg",

@@ -33,0 +43,0 @@ author_email="haak.erling@gmail.com",

Metadata-Version: 1.0
Name: solid
Version: 0.1.3
Version: 0.2.0
Summary: Pythonic state machines

@@ -35,3 +35,3 @@ Home-page: http://github.com/haaksmash/solid

::
.. code-block:: python

@@ -58,3 +58,3 @@ from solid.machines import BaseMachine

::
.. code-block:: python

@@ -61,0 +61,0 @@ >>> h = HelloMachine()