|
22 | 22 | Natural Language :: English |
23 | 23 | Operating System :: MacOS :: MacOS X |
24 | 24 | Programming Language :: Python |
25 | | -Programming Language :: Python :: 2.7 |
26 | | -Programming Language :: Python :: 3.2 |
27 | | -Programming Language :: Python :: 3.3 |
28 | 25 | Programming Language :: Python :: 3.4 |
29 | 26 | Programming Language :: Python :: 3.5 |
30 | 27 | Programming Language :: Python :: 3.6 |
31 | 28 | Programming Language :: Python :: 3.7 |
32 | 29 | Programming Language :: Python :: 3.8 |
| 30 | +Programming Language :: Python :: 3.9 |
33 | 31 | Programming Language :: Python :: Implementation :: CPython |
34 | 32 | """.splitlines() if len(line) > 0] |
35 | 33 |
|
36 | 34 | install_requires = ["six", "pyobjc-framework-ServiceManagement"] |
37 | 35 |
|
38 | | -if sys.version_info < (3, 2): |
39 | | - install_requires.append("argparse") |
40 | | - |
41 | 36 | if not 'darwin' in sys.platform: |
42 | 37 | sys.stderr.write("Warning: The package 'launchd' can only be installed and run on OS X!" + os.linesep) |
43 | 38 |
|
|
51 | 46 | author="Paul Kremer", |
52 | 47 | author_email="@".join(("paul", "spurious.biz")), # avoid spam, |
53 | 48 | license="MIT License", |
54 | | - description="pythonic interface for OS X launchd", |
| 49 | + description="pythonic interface for macOS launchd", |
55 | 50 | long_description=(open('README.rst', 'r').read() + '\n\n' + |
56 | 51 | open('CHANGELOG.rst', 'r').read()), |
57 | 52 | url="https://github.com/infothrill/python-launchd", |
|
0 commit comments