forked from samschott/maestral-cocoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (60 loc) · 1.82 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
install_requires = [
"click",
"importlib_metadata;python_version<'3.8'",
"importlib_resources;python_version<'3.9'",
"maestral>=1.5.2",
"markdown2",
"toga==0.3.0.dev29",
"rubicon-objc>=0.4.2",
]
dev_requires = [
"black",
"bump2version",
"flake8",
"mypy",
"pre-commit",
"pytest",
"pytest-cov",
"types-pkg_resources",
"types-requests",
]
setup(
name="maestral-cocoa",
author="Sam Schott",
author_email="[email protected]",
version="1.5.3.dev0",
url="https://maestral.app",
description="Open-source Dropbox client for macOS and Linux.",
license="MIT",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages("src"),
package_dir={"": "src"},
package_data={
"maestral_cocoa": ["resources/*"],
},
python_requires=">=3.6",
setup_requires=["wheel"],
install_requires=install_requires,
extras_require={"dev": dev_requires},
zip_safe=False,
entry_points={
"console_scripts": ["maestral_cocoa=maestral_cocoa.__main__:main"],
"maestral_gui": ["maestral_cocoa=maestral_cocoa.app:run"],
"pyinstaller40": ["hook-dirs=maestral_cocoa.__pyinstaller:get_hook_dirs"],
},
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
)