-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (27 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
from os.path import join, dirname
execfile(join(dirname(__file__), 'src', 'UnixFilesystemLibrary', 'version.py'))
from distutils.core import setup
CLASSIFIERS = """
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
long_description=open(join(dirname(__file__), 'README.rst',)).read()
setup(
name = 'robotframework-unixfilesystemlibrary',
version = VERSION,
description = 'Robot Framework UNIX Filesystem Library',
long_description = long_description,
author = 'Chris Hirsch',
author_email = '[email protected]',
url = 'https://github.com/ChrisHirsch/robotframework-unixfilesystem',
license = 'Apache License 2.0',
keywords = 'robotframework testing testautomation unix filesystem attributes',
platforms = 'any',
zip_safe = False,
classifiers = CLASSIFIERS.splitlines(),
package_dir = {'' : 'src'},
install_requires = ['robotframework'],
extras_require = dict(test=['zope.testing']),
packages = ['UnixFilesystemLibrary'],
)