diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..74823b3 --- /dev/null +++ b/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 diff --git a/setup.py b/setup.py index 6926bdc..00fbbd7 100755 --- a/setup.py +++ b/setup.py @@ -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) @@ -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'},