-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (34 loc) · 1006 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·39 lines (34 loc) · 1006 Bytes
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Oct 15 09:33:49 2019
@author: quentinpeter
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="applaunchservices",
version="0.3.2",
author="Quentin Peter",
author_email="qpeter@bluewin.ch",
description="Simple package for registering an app with apple Launch Services to handle UTI and URL",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/impact27/applaunchservices",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
],
install_requires=[
'pyobjc-framework-CoreServices',
'looseversion',
],
tests_require=[
'PyQt5',
'pytest',
],
)