resync/setup.py
2013-01-21 14:04:05 -05:00

16 lines
507 B
Python

from distutils.core import setup
setup(
name='resync',
version='0.1',
packages=['resync'],
classifiers=["Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment"],
author='Simeon Warner',
author_email='simeon.warner@cornell.edu',
long_description=open('README.txt').read(),
url='http://github.com/resync/resync',
)