-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
23 lines (21 loc) · 788 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = "py-applescript",
version = "1.0.3",
description = "An easy-to-use Python wrapper for NSAppleScript, allowing Python scripts to communicate with AppleScripts and AppleScriptable applications.",
url = "https://github.com/rdhyee/py-applescript",
platforms = ['Mac OS X'],
license = 'Public Domain',
packages = ['applescript'],
install_requires = ['pyobjc-core', 'pyobjc-framework-AppleScriptKit', 'pyobjc-framework-AppleScriptObjC'],
classifiers = [
'License :: Public Domain',
'Development Status :: 5 - Production/Stable',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)