forked from skip-pay/germanium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 838 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 838 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
from setuptools import setup, find_packages
setup(
name='skip-django-germanium',
version='2.6.0',
description='Helpful methods for Python Selenium and REST testing',
author='Lukas Rychtecky, Lubos Matl',
author_email='lukas.rychtecky@gmail.com, matllubos@gmail.com',
url='https://github.com/skip-pay/germanium',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=[
'django>=4.2',
'PyVirtualDisplay>=0.1.2',
'selenium>=2.37.2',
'pynose>=1.5.4',
'responses>=0.5.1',
],
include_package_data=True,
zip_safe=False,
)