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

dataclasses

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dataclasses - pypi Package Compare versions

Comparing version
0.6
to
0.7
+7
-3
dataclasses.egg-info/PKG-INFO

@@ -1,4 +0,4 @@

Metadata-Version: 1.1
Metadata-Version: 1.2
Name: dataclasses
Version: 0.6
Version: 0.7
Summary: A backport of the dataclasses module for Python 3.6

@@ -10,2 +10,3 @@ Home-page: https://github.com/ericvsmith/dataclasses

Description: .. image:: https://img.shields.io/pypi/v/dataclasses.svg
:target: https://pypi.org/project/dataclasses/

@@ -25,3 +26,3 @@

A test file can be found at
https://github.com/ericvsmith/dataclasses/blob/master/test_dataclasses.py,
https://github.com/ericvsmith/dataclasses/blob/master/test/test_dataclasses.py,
or in the sdist file.

@@ -82,2 +83,4 @@

+=========+============+=====================================+
| 0.7 | 2019-10-20 | Require python 3.6 only |
+---------+------------+-------------------------------------+
| 0.6 | 2018-05-17 | Equivalent to Python 3.7.0rc1 |

@@ -94,1 +97,2 @@ +---------+------------+-------------------------------------+

Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6, <3.7

@@ -1,4 +0,4 @@

Metadata-Version: 1.1
Metadata-Version: 1.2
Name: dataclasses
Version: 0.6
Version: 0.7
Summary: A backport of the dataclasses module for Python 3.6

@@ -10,2 +10,3 @@ Home-page: https://github.com/ericvsmith/dataclasses

Description: .. image:: https://img.shields.io/pypi/v/dataclasses.svg
:target: https://pypi.org/project/dataclasses/

@@ -25,3 +26,3 @@

A test file can be found at
https://github.com/ericvsmith/dataclasses/blob/master/test_dataclasses.py,
https://github.com/ericvsmith/dataclasses/blob/master/test/test_dataclasses.py,
or in the sdist file.

@@ -82,2 +83,4 @@

+=========+============+=====================================+
| 0.7 | 2019-10-20 | Require python 3.6 only |
+---------+------------+-------------------------------------+
| 0.6 | 2018-05-17 | Equivalent to Python 3.7.0rc1 |

@@ -94,1 +97,2 @@ +---------+------------+-------------------------------------+

Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6, <3.7
.. image:: https://img.shields.io/pypi/v/dataclasses.svg
:target: https://pypi.org/project/dataclasses/

@@ -16,3 +17,3 @@

A test file can be found at
https://github.com/ericvsmith/dataclasses/blob/master/test_dataclasses.py,
https://github.com/ericvsmith/dataclasses/blob/master/test/test_dataclasses.py,
or in the sdist file.

@@ -73,2 +74,4 @@

+=========+============+=====================================+
| 0.7 | 2019-10-20 | Require python 3.6 only |
+---------+------------+-------------------------------------+
| 0.6 | 2018-05-17 | Equivalent to Python 3.7.0rc1 |

@@ -75,0 +78,0 @@ +---------+------------+-------------------------------------+

[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0
+15
-14
from setuptools import setup
with open('README.rst') as readme:
with open("README.rst") as readme:
README = readme.read()
setup(
name='dataclasses',
version='0.6',
description='A backport of the dataclasses module for Python 3.6',
name="dataclasses",
version="0.7",
description="A backport of the dataclasses module for Python 3.6",
long_description=README,
url='https://github.com/ericvsmith/dataclasses',
author='Eric V. Smith',
author_email='eric@python.org',
license='Apache',
url="https://github.com/ericvsmith/dataclasses",
author="Eric V. Smith",
author_email="eric@python.org",
license="Apache",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
],
py_modules=['dataclasses']
py_modules=["dataclasses"],
python_requires=">=3.6, <3.7",
)