-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 756 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='robotweb',
version='0.0.1',
url='',
author='Michael Rose',
author_email='michael.rose@theice.com',
classifiers=[
'Development Status :: 4 - Beta',
],
long_description=long_description,
packages=find_packages('src', exclude=['contrib', 'docs', 'atest', 'utest']),
python_requires='>=3.5',
install_requires=['django>=2.1.7', 'robotframework>=3.1.1'],
description='A web utility for executing Robot Framework tests and viewing test results from a browser.'
)