Commit dc04f61b29defdb9c3884ce9a278d1bce234dd0c

Authored by Taras Kozlovskyi
1 parent 25d15777

Added initial files

  1 +[egg_info]
  2 +tag_build = dev
  3 +tag_svn_revision = true
  1 +from setuptools import setup, find_packages
  2 +import sys, os
  3 +
  4 +version = '0.0'
  5 +
  6 +setup(name='op_robot_tests',
  7 + version=version,
  8 + description="",
  9 + long_description="""\
  10 +""",
  11 + classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
  12 + keywords='',
  13 + author='',
  14 + author_email='',
  15 + url='',
  16 + license='',
  17 + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
  18 + include_package_data=True,
  19 + zip_safe=False,
  20 + install_requires=[
  21 + # -*- Extra requirements: -*-
  22 + ],
  23 + entry_points="""
  24 + # -*- Entry points: -*-
  25 + """,
  26 + )
Please register or login to post a comment