Skip to content

Commit

Permalink
packaged for first release on pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
devinaconley committed Aug 17, 2018
1 parent 6b3bcbc commit 8ff4123
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
.idea/
*.DS_Store
*.pytest_cache/
core/etc/data
core/etc/results
core/etc/secrets

# Byte-compiled / optimized / DLL files
__pycache__/
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# py-object-factory
# py-object-factory

A python package for the serializable model / factory pattern
4 changes: 3 additions & 1 deletion object_factory/__init__.py → objectfactory/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
object_factory
objectfactory
"""

from .serializable import (
Expand All @@ -9,3 +9,5 @@
Nested,
List
)

__version__ = '0.0.1'
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
long_description = fh.read()

setuptools.setup(
name='object_factory',
version='0.0.0',
name='objectfactory',
version='0.0.1',
author='Devin A. Conley',
author_email='devinaconley@gmail.com',
description='A python package for the serializable model / factory pattern',
Expand Down
2 changes: 1 addition & 1 deletion test/test_serializable.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

# src
from object_factory.serializable import Factory, Serializable, Field, Nested, List
from objectfactory.serializable import Factory, Serializable, Field, Nested, List


@Factory.register_class
Expand Down

0 comments on commit 8ff4123

Please # to comment.