pyaccuwage/setup.py
Binh Van Nguyen 7cb8bed61e Bumped version to 0.0.5
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.
2011-10-29 14:03:03 -05:00

6 lines
133 B
Python

from distutils.core import setup
setup(name='pyaccuwage',
version='0.0.5',
packages=['pyaccuwage'],
zip_safe=True,
)