forked from konradhalas/dacite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare to release as
dacite2==2.0b2
- Loading branch information
Showing
2 changed files
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 [email protected]:konradhalas/dacite.git | ||
$ git clone [email protected]: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]: [email protected] | ||
[changelog]: https://github.com/idanmiara/dacite/blob/master/CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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="[email protected]", | ||
url="https://github.com/konradhalas/dacite", | ||
maintainer="Idan Miara", | ||
maintainer_email="[email protected]", | ||
url="https://github.com/idanmiara/dacite", | ||
license="MIT", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
|