forked from canonical/snapcraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·122 lines (112 loc) · 3.94 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
#!/usr/bin/env python3
# -*- Mode:Python; indent-tabs-mode:nil; tab-width:4 -*-
#
# Copyright (C) 2015-2018 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 codecs
import os
import re
import sys
from setuptools import setup
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"
version = "devel"
description = "Publish your app for Linux users for desktop, cloud, and IoT."
author_email = "snapcraft@lists.snapcraft.io"
url = "https://github.com/snapcore/snapcraft"
packages = [
"snapcraft",
"snapcraft.cli",
"snapcraft.cli.snapcraftctl",
"snapcraft.extractors",
"snapcraft.integrations",
"snapcraft.internal",
"snapcraft.internal.cache",
"snapcraft.internal.build_providers",
"snapcraft.internal.build_providers._lxd",
"snapcraft.internal.build_providers._multipass",
"snapcraft.internal.deltas",
"snapcraft.internal.lifecycle",
"snapcraft.internal.meta",
"snapcraft.internal.pluginhandler",
"snapcraft.internal.project_loader",
"snapcraft.internal.project_loader.grammar",
"snapcraft.internal.project_loader.grammar_processing",
"snapcraft.internal.project_loader.inspection",
"snapcraft.internal.project_loader._extensions",
"snapcraft.internal.remote_build",
"snapcraft.internal.repo",
"snapcraft.internal.review_tools",
"snapcraft.internal.sources",
"snapcraft.internal.states",
"snapcraft.project",
"snapcraft.plugins",
"snapcraft.plugins._ros",
"snapcraft.plugins._python",
"snapcraft.storeapi",
]
package_data = {"snapcraft.internal.repo": ["manifest.txt"]}
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.5",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Software Distribution",
]
# look/set what version we have
changelog = "debian/changelog"
if os.path.exists(changelog):
head = codecs.open(changelog, encoding="utf-8").readline()
match = re.compile(r".*\((.*)\).*").match(head)
if match:
version = match.group(1)
# snapcraftctl is not in console_scripts because we need a clean environment.
# Only include it for Linux.
if sys.platform == "linux":
scripts = ["bin/snapcraftctl"]
else:
scripts = []
setup(
name=name,
version=version,
description=description,
author_email=author_email,
url=url,
packages=packages,
package_data=package_data,
license=license,
classifiers=classifiers,
scripts=scripts,
entry_points=dict(console_scripts=["snapcraft = snapcraft.cli.__main__:run"]),
data_files=(
recursive_data_files("schema", "share/snapcraft")
+ recursive_data_files("keyrings", "share/snapcraft")
+ recursive_data_files("extensions", "share/snapcraft")
),
install_requires=["pysha3", "pyxdg", "requests"],
test_suite="tests.unit",
)