9 lines
235 B
Python
9 lines
235 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='resync',
|
|
version='0.1dev',
|
|
packages=['resync',],
|
|
license='Creative Commons Attribution-Noncommercial-Share Alike license',
|
|
long_description=open('README.txt').read(),
|
|
) |