-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (40 loc) · 1.24 KB
/
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
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for pyfrank."""
from setuptools import setup, find_packages
import sys, os
version = '0.2.8'
# some trove classifiers:
# License :: OSI Approved :: MIT License
# Intended Audience :: Developers
# Operating System :: POSIX
setup(
name='pyfrank',
version=version,
package_dir={'pyfrank': 'src'},
packages=['pyfrank'],
description="python binding for iOS automation using frank.",
long_description=open('README.rst').read(),
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Testing'
],
keywords='python frank pyfrank frankly ios qa automation robot testing',
author='Daniel Ben-Zvi',
author_email='[email protected]',
url='https://github.com/everythingme/pyfrank',
license='BSD',
include_package_data=True,
zip_safe=False,
test_suite="tests",
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)