Skip to content

Commit 8ff4123

Browse files
committed
packaged for first release on pypi
1 parent 6b3bcbc commit 8ff4123

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
.idea/
33
*.DS_Store
44
*.pytest_cache/
5-
core/etc/data
6-
core/etc/results
7-
core/etc/secrets
85

96
# Byte-compiled / optimized / DLL files
107
__pycache__/

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
# py-object-factory
1+
# py-object-factory
2+
3+
A python package for the serializable model / factory pattern

object_factory/__init__.py renamed to objectfactory/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
object_factory
2+
objectfactory
33
"""
44

55
from .serializable import (
@@ -9,3 +9,5 @@
99
Nested,
1010
List
1111
)
12+
13+
__version__ = '0.0.1'
File renamed without changes.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
long_description = fh.read()
55

66
setuptools.setup(
7-
name='object_factory',
8-
version='0.0.0',
7+
name='objectfactory',
8+
version='0.0.1',
99
author='Devin A. Conley',
1010
author_email='devinaconley@gmail.com',
1111
description='A python package for the serializable model / factory pattern',

test/test_serializable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55
# src
6-
from object_factory.serializable import Factory, Serializable, Field, Nested, List
6+
from objectfactory.serializable import Factory, Serializable, Field, Nested, List
77

88

99
@Factory.register_class

0 commit comments

Comments
 (0)