Skip to content

Commit

Permalink
setting up the repo structure
Browse files Browse the repository at this point in the history
  • Loading branch information
bulkan committed Sep 16, 2011
1 parent 7207925 commit bd51c1e
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitignore
@@ -0,0 +1,16 @@
*.*~
*~
*.pyc
*.swp
*.swo
log.html
output.xml
debug.txt
report.html
~*
.DS_Store
htmlcov
.coverage

build/

35 changes: 35 additions & 0 deletions setup.py
@@ -0,0 +1,35 @@
#!/usr/bin/env python

from distutils.core import setup

from os.path import abspath, dirname, join
execfile(join(dirname(abspath(__file__)), 'src', 'DiffLibrary', 'version.py'))

DESCRIPTION = """
Robot Framework keyword library that will provide keyword functionality to diff two fules together .
"""[1:-1]


CLASSIFIERS = """
Development Status :: 5 - Production/Stable
License :: Public Domain
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]

setup(name = 'robotframework-difflibrary',
version = VERSION,
description = 'Robot Framework keyword library for textual diffing',
long_description = DESCRIPTION,
author = 'Bulkan Savun Evcimen',
author_email = 'bulkan@gmail.com',
url = 'http://github.com/bulkan/robotframework-difflibrary',
license = 'Public Domain',
keywords = 'robotframework testing test automation diff textual',
platforms = 'any',
classifiers = CLASSIFIERS.splitlines(),
package_dir = {'' : 'src'},
packages = ['DiffLibrary'],
#package_data = {'DiffLibrary': ['tests/*.txt']}
)
Empty file added src/DiffLibrary/__init__.py
Empty file.
Empty file added src/DiffLibrary/keywords.py
Empty file.
1 change: 1 addition & 0 deletions src/DiffLibrary/version.py
@@ -0,0 +1 @@
VERSION = '0.1dev'

0 comments on commit bd51c1e

Please sign in to comment.