-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
42 lines (38 loc) · 1.14 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
from os import path
from setuptools import setup
from plunchy import VERSION
long_description = open(
path.join(
path.dirname(__file__),
'README.rst'
)
).read()
entry_points = {
'console_scripts': ['plunchy = plunchy:main']
}
setup(
name='plunchy',
py_modules=['plunchy'],
entry_points=entry_points,
version=VERSION,
description="A simpler interface into OS X's launchctl",
long_description=long_description,
author='Bill Israel',
author_email='bill.israel@gmail.com',
url='https://github.com/epochblue/plunchy',
keywords=['os x', 'launchctl', 'lunchy'],
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: MacOS X',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
)