24 lines
967 B
Python
24 lines
967 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='resync',
|
|
version='0.6.1',
|
|
packages=['resync'],
|
|
scripts=['bin/resync'],
|
|
classifiers=["Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Operating System :: OS Independent", #is this true? know Linux & OS X ok
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 2.6",
|
|
"Programming Language :: Python :: 2.7",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Environment :: Web Environment"],
|
|
author='Simeon Warner',
|
|
author_email='simeon.warner@cornell.edu',
|
|
description='ResourceSync library and client',
|
|
long_description=open('README.md').read(),
|
|
url='http://github.com/resync/resync',
|
|
)
|