Blame view

setup.py 1.03 KB
1
from setuptools import find_packages, setup
Taras Kozlovskyi authored
2
selurvedu authored
3
version = '2.4.dev0'
Taras Kozlovskyi authored
4 5 6 7 8 9

setup(name='op_robot_tests',
      version=version,
      description="",
      long_description="""\
""",
10
      classifiers=[],  # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
Taras Kozlovskyi authored
11 12 13 14 15 16 17 18 19 20
      keywords='',
      author='',
      author_email='',
      url='',
      license='',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
21
          'Faker',
22
          'Pillow',
23
          'PyYAML',
24 25
          'barbecue',
          'dateutils',
26
          'dpath',
27 28
          'haversine',
          'iso8601',
Taras Kozlovskyi authored
29
          'jsonpath-rw',
30
          'munch',
31
          'parse',
32 33 34 35
          'pytz',
          'robotframework',
          'robotframework-selenium2library',
          'selenium < 3.0.dev0',
Taras Kozlovskyi authored
36
      ],
37 38
      entry_points={
          'console_scripts': [
39
              'op_tests = op_robot_tests.runner:runner',
40 41
          ],
      }
Taras Kozlovskyi authored
42
      )