-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
40 lines (37 loc) · 1.16 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
36
37
38
39
40
#!/usr/bin/env python
from setuptools import setup, find_packages
__AUTHOR__ = 'QuantStack dev team'
setup(
name='robotframework-interpreter',
version='0.7.6',
description='Utility functions for building a Robot Framework interpreter.',
author=__AUTHOR__,
maintainer=__AUTHOR__,
url='https://github.com/martinRenou/robotframework-interpreter',
license='BSD 3-Clause',
keywords='robotframework interpreter',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.6',
install_requires=[
'robotframework>=3.2,<5',
'lunr',
'Pillow',
'pygments',
'ipywidgets'
],
extras_require={
'testing': ['flake8'],
},
platforms=['any'],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)