forked from s4int/robotframework-CSVLibrary
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 1.15 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
34
35
#!/usr/bin/env python
from os.path import join, dirname
from setuptools import setup
#execfile(join(dirname(__file__), 'CSVLibrary', 'version.py'))
with open(join(dirname(__file__), 'CSVLibrary', 'version.py')) as infile:
exec(infile.read())
DESCRIPTION = """
CSV file support for Robot Framework.
"""[1:-1]
setup(name = 'robotframework-csvlibrary',
version = VERSION,
description = 'CSV library for Robot Framework',
long_description = DESCRIPTION,
author = 'Marcin Mierzejewski',
author_email = '<mmierz@gmail.com>',
url = 'https://github.com/s4int/robotframework-CSVLibrary',
license = 'Apache License 2.0',
keywords = 'robotframework testing csv',
platforms = 'any',
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Testing"
],
install_requires = [
'robotframework >= 2.6.0',
],
packages = ['CSVLibrary'],
)