Fixed problem where fields contained shared values by performing a shallow copy on all fields during Record instantiation. That way, each record has its own copy of the field instances, rather than the shared class-wide instance provided by the definition.
6 lines
133 B
Python
6 lines
133 B
Python
from distutils.core import setup
|
|
setup(name='pyaccuwage',
|
|
version='0.0.5',
|
|
packages=['pyaccuwage'],
|
|
zip_safe=True,
|
|
)
|