Skip to content

Commit

Permalink
Bump to version 0.0.2 with dependency fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rhbvkleef committed Nov 1, 2018
1 parent c881da5 commit 5d9c0d9
Show file tree
Hide file tree
Showing 4 changed files with 152 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ name = "pypi"

[packages]
typeguard = "*"
setuptools = "*"

[dev-packages]
setuptools = "*"
wheel = "*"
twine = "*"
pipenv = "*"

[requires]
python_version = "3.6"
142 changes: 140 additions & 2 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dict_deserializer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from collections import namedtuple

name = 'Dictionary deserializer'
version = '0.0.1'
version = '0.0.2'
description = "Dictionary deserializer is a package that aides in the " \
"deserializing of JSON (or other structures) that are " \
"converted to dicts, into composite classes."
Expand Down
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import setuptools
import dict_deserializer

from pipenv.project import Project
from pipenv.utils import convert_deps_to_pip

pfile = Project(chdir=False).parsed_pipfile
requirements = convert_deps_to_pip(pfile['packages'], r=False)

with open("README.md", "r") as fh:
long_description = fh.read()

Expand All @@ -14,6 +20,7 @@
long_description_content_type="text/markdown",
url="https://git.iapc.utwente.nl/rkleef/serializer_utils",
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
Expand Down

0 comments on commit 5d9c0d9

Please sign in to comment.