-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 793 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (20 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
from os import path
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
setup(
name='python-sikuli-client',
include_package_data = True,
package_data = {'':['*.md']},
author='Alistair Broomhead',
version='0.1.9',
author_email='alistair.broomhead@gmail.com',
description='Python library to act as a client for jython-sikuli-server',
license='MIT',
url='https://github.com/alistair-broomhead/python-sikuli-client',
download_url='https://github.com/alistair-broomhead/python-sikuli-client/zipball/master',
long_description=read('README.md'),
packages=find_packages('src'),
package_dir={ '' : 'src' },
install_requires=['jython-sikuli-server', 'robotframework']
)