-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 998 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
24
25
26
27
28
29
30
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
try:
from pypandoc import convert
read_md = lambda f: convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(name='applescript_terminal_command',
version='0.1.0',
description='AppleScript Terminal Command',
long_description=read_md('README.md'),
author='Abtin Gramian',
author_email='[email protected]',
url='https://github.com/agramian/applescript-terminal-command',
packages=['applescript_terminal_command'],
install_requires=[
'subprocess_manager',
'shell'
],
download_url = 'https://github.com/agramian/applescript-terminal-command/tarball/v0.1.0',
keywords = ['applescript', 'terminal', 'app', 'mac', 'osx', 'shell', 'commands'],
classifiers = [],
)