forked from MarketSquare/Rammbock
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·18 lines (16 loc) · 721 Bytes
/
setup.py
File metadata and controls
executable file
·18 lines (16 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
from distutils.core import setup
from os.path import join, dirname, abspath
CURDIR = dirname(abspath(__file__))
exec(compile(open(join(CURDIR, 'src', 'Rammbock', 'version.py')).read(), 'version.py', 'exec'))
setup(name='robotframework-rammbock',
version=VERSION,
description='Protocol testing library for Robot Framework',
author='Robot Framework Developers',
author_email='robotframework-users@googlegroups.com',
url='http://github.com/robotframework/Rammbock/',
package_dir={'': 'src'},
packages=['Rammbock', 'Rammbock.templates'],
long_description=open(join(CURDIR, 'README.rst')).read(),
install_requires=['robotframework', 'six']
)