forked from canonical/snapcraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·173 lines (157 loc) · 4.25 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#!/usr/bin/env python3
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-
#
# Copyright 2015-2022 Canonical Ltd.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import sys
from setuptools import find_namespace_packages, setup
from tools.version import determine_version
def recursive_data_files(directory, install_directory):
data_files = []
for root, directories, file_names in os.walk(directory):
file_paths = [os.path.join(root, file_name) for file_name in file_names]
data_files.append((os.path.join(install_directory, root), file_paths))
return data_files
# Common distribution data
name = "snapcraft"
description = "Publish your app for Linux users for desktop, cloud, and IoT."
author_email = "snapcraft@lists.snapcraft.io"
url = "https://github.com/snapcore/snapcraft"
license = "GPL v3"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Software Distribution",
]
# snapcraftctl is not in console_scripts because we need a clean environment.
# Only include it for Linux.
if sys.platform == "linux":
scripts = ["bin/snapcraftctl", "bin/snapcraftctl-compat"]
else:
scripts = []
dev_requires = [
"black",
"codespell",
"coverage",
"flake8",
"pyflakes",
"fixtures",
"isort",
"mccabe",
"mypy",
"testscenarios",
"pexpect",
"pip",
"pycodestyle",
"pydocstyle",
"pyftpdlib",
"pylint",
"pylint-fixme-info",
"pylint-pytest",
"pyramid",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-subprocess",
"types-PyYAML",
"types-requests",
"types-setuptools",
"types-tabulate",
]
if sys.platform == "win32":
dev_requires.append("pyinstaller")
install_requires = [
"attrs",
"click",
"craft-cli",
"craft-grammar",
"craft-parts",
"craft-providers",
"craft-store",
"cryptography==3.4",
"gnupg",
"jsonschema==2.5.1",
"launchpadlib",
"lazr.restfulclient",
"lxml",
"macaroonbakery",
"mypy-extensions",
"overrides",
"progressbar",
"pyelftools",
"pymacaroons",
"pyxdg",
"pyyaml",
"raven",
"requests-toolbelt",
"requests-unixsocket",
"requests",
"simplejson",
"tabulate",
"toml",
"tinydb",
"typing-extensions",
]
try:
os_release = open("/etc/os-release").read()
ubuntu = "ID=ubuntu" in os_release
except FileNotFoundError:
ubuntu = False
if sys.platform == "linux":
install_requires += [
"pylxd",
]
if ubuntu:
install_requires += [
"catkin-pkg",
"python-apt",
"python-debian",
]
extras_requires = {
"dev": dev_requires,
}
setup(
name=name,
version=determine_version(),
description=description,
author_email=author_email,
url=url,
packages=find_namespace_packages(),
license=license,
classifiers=classifiers,
scripts=scripts,
entry_points=dict(
console_scripts=[
"snapcraft_legacy = snapcraft_legacy.cli.__main__:run",
"snapcraft = snapcraft.cli:run",
]
),
data_files=(
recursive_data_files("schema", "share/snapcraft")
+ recursive_data_files("keyrings", "share/snapcraft")
+ recursive_data_files("extensions", "share/snapcraft")
),
install_requires=install_requires,
extras_require=extras_requires,
test_suite="tests.unit",
)