-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
38 lines (34 loc) · 939 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
import os
__version__ = None # quiet linters
with open(os.path.join('geist', 'version.py')) as f:
exec(f.read())
setup(
name='geist',
version=__version__,
packages=['geist', 'geist.backends'],
install_requires=[
'numpy>=1.9.0',
'scipy',
'ooxcb',
'PyHamcrest',
'pillow',
'wrapt',
'mock',
],
description='Visual Automation Library',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
license='MIT',
author='The Test People Limited',
maintainer='Tony Simpson',
url='https://github.com/thetestpeople/Geist',
test_suite="geist_tests",
)