-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 757 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 757 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
25
26
27
#!/usr/bin/env python3
from setuptools import setup, find_packages
from dyson import __version__, __author__
setup(
name="Dyson",
description="Dyson Selenium framework.",
version=__version__,
author=__author__,
author_email="sircapsalot@gmail.com",
url="https://github.com/dynamictivity/dyson",
download_url="https://github.com/dynamictivity/dyson/tarball/%s" % __version__,
license="Apache 2",
package_dir={'': 'lib'},
packages=find_packages('lib'),
install_requires=['PyYAML', 'jinja2', 'six', 'selenium'],
classifiers=[],
keywords=['selenium', 'testing'],
scripts=[
"bin/dyson",
"bin/dyson-test",
"bin/dyson-suite",
"bin/dyson-sphere",
],
data_files=[],
)