diff --git a/README.md b/README.md index 65b1f42..437bb51 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,14 @@ # dacite -[![Build Status](https://travis-ci.org/konradhalas/dacite.svg?branch=master)](https://travis-ci.org/konradhalas/dacite) -[![Coverage Status](https://coveralls.io/repos/github/konradhalas/dacite/badge.svg?branch=master)](https://coveralls.io/github/konradhalas/dacite?branch=master) +[![Build Status](https://travis-ci.org/idanmiara/dacite.svg?branch=master)](https://travis-ci.org/idanmiara/dacite) +[![Coverage Status](https://coveralls.io/repos/github/idanmiara/dacite/badge.svg?branch=master)](https://coveralls.io/github/idanmiara/dacite?branch=master) [![License](https://img.shields.io/pypi/l/dacite.svg)](https://pypi.python.org/pypi/dacite/) [![Version](https://img.shields.io/pypi/v/dacite.svg)](https://pypi.python.org/pypi/dacite/) [![Python versions](https://img.shields.io/pypi/pyversions/dacite.svg)](https://pypi.python.org/pypi/dacite/) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black) +This is a fork of `dacite`: https://github.com/konradhalas/dacite + This module simplifies creation of data classes ([PEP 557][pep-557]) from dictionaries. @@ -440,7 +442,7 @@ first within an issue. Clone `dacite` repository: ``` -$ git clone git@github.com:konradhalas/dacite.git +$ git clone git@github.com:idanmiara/dacite.git ``` Create and activate virtualenv in the way you like: @@ -575,7 +577,9 @@ Follow `dacite` updates in [CHANGELOG][changelog]. ## Authors Created by [Konrad Hałas][halas-homepage]. +Maintained by [Idan Miara][miara-email]. [pep-557]: https://www.python.org/dev/peps/pep-0557/ [halas-homepage]: https://konradhalas.pl -[changelog]: https://github.com/konradhalas/dacite/blob/master/CHANGELOG.md +[miara-email]: idan@miara.com +[changelog]: https://github.com/idanmiara/dacite/blob/master/CHANGELOG.md diff --git a/setup.py b/setup.py index 5c46cc6..b199290 100644 --- a/setup.py +++ b/setup.py @@ -1,14 +1,16 @@ from setuptools import setup setup( - name="dacite", - version="1.6.0", - description="Simple creation of data classes from dictionaries.", + name="dacite2", + version="2.0b2", + description="Simple creation of data classes from dictionaries (fork of dacite).", long_description=open("README.md", encoding="utf-8").read(), long_description_content_type="text/markdown", author="Konrad Hałas", author_email="halas.konrad@gmail.com", - url="https://github.com/konradhalas/dacite", + maintainer="Idan Miara", + maintainer_email="idan@miara.com", + url="https://github.com/idanmiara/dacite", license="MIT", classifiers=[ "Development Status :: 5 - Production/Stable",