Skip to content

Commit

Permalink
adding MANIFEST.in and tuning setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pekkaklarck committed Mar 4, 2014
1 parent 93dd3d2 commit 9e2f67f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,2 @@
include MANIFEST.in LICENSE.txt COPYRIGHT.txt README.rst
include example/examplelibrary.py example/example_tests.robot example/README.rst
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -5,13 +5,13 @@
import re

NAME = 'robotremoteserver'
CLASSIFIERS = """
CLASSIFIERS = '''
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Testing
""".strip().splitlines()
'''.strip().splitlines()
CURDIR = dirname(abspath(__file__))
with open(join(CURDIR, 'src', NAME+'.py')) as source:
VERSION = re.search("\n__version__ = '(.*)'\n", source.read()).group(1)
Expand All @@ -28,7 +28,7 @@
license = 'Apache License 2.0',
description = 'Python Remote Server for Robot Framework',
long_description = README,
keywords = 'robotframework testing testautomation remote',
keywords = 'robotframework testing testautomation remoteinterface',
platforms = 'any',
classifiers = CLASSIFIERS,
package_dir = {'': 'src'},
Expand Down

0 comments on commit 9e2f67f

Please sign in to comment.