blob: f50eb47303ca2b27a4f416538bdfe3800f102fb5 [file] [log] [blame]
Mike Frysinger08eb63c2020-12-01 13:21:06 -05001#!/usr/bin/env python3
Mike Frysinger5b3a57c2019-12-01 21:56:07 -05002# Copyright 2019 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the 'License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16"""Python packaging for repo."""
17
Mike Frysinger5b3a57c2019-12-01 21:56:07 -050018import os
19import setuptools
20
21
22TOPDIR = os.path.dirname(os.path.abspath(__file__))
23
24
25# Rip out the first intro paragraph.
Gavin Makea2e3302023-03-11 06:46:20 +000026with open(os.path.join(TOPDIR, "README.md")) as fp:
Mike Frysinger5b3a57c2019-12-01 21:56:07 -050027 lines = fp.read().splitlines()[2:]
Gavin Makea2e3302023-03-11 06:46:20 +000028 end = lines.index("")
29 long_description = " ".join(lines[0:end])
Mike Frysinger5b3a57c2019-12-01 21:56:07 -050030
31
32# https://packaging.python.org/tutorials/packaging-projects/
33setuptools.setup(
Gavin Makea2e3302023-03-11 06:46:20 +000034 name="repo",
35 version="2",
36 maintainer="Various",
37 maintainer_email="repo-discuss@googlegroups.com",
38 description="Repo helps manage many Git repositories",
Mike Frysinger5b3a57c2019-12-01 21:56:07 -050039 long_description=long_description,
Gavin Makea2e3302023-03-11 06:46:20 +000040 long_description_content_type="text/plain",
41 url="https://gerrit.googlesource.com/git-repo/",
Mike Frysinger5b3a57c2019-12-01 21:56:07 -050042 project_urls={
Gavin Makea2e3302023-03-11 06:46:20 +000043 "Bug Tracker": "https://bugs.chromium.org/p/gerrit/issues/list?q=component:Applications%3Erepo", # noqa: E501
Mike Frysinger5b3a57c2019-12-01 21:56:07 -050044 },
45 # https://pypi.org/classifiers/
46 classifiers=[
Gavin Makea2e3302023-03-11 06:46:20 +000047 "Development Status :: 6 - Mature",
48 "Environment :: Console",
49 "Intended Audience :: Developers",
50 "License :: OSI Approved :: Apache Software License",
51 "Natural Language :: English",
52 "Operating System :: MacOS :: MacOS X",
53 "Operating System :: Microsoft :: Windows :: Windows 10",
54 "Operating System :: POSIX :: Linux",
55 "Programming Language :: Python :: 3",
56 "Programming Language :: Python :: 3 :: Only",
57 "Topic :: Software Development :: Version Control :: Git",
Mike Frysinger5b3a57c2019-12-01 21:56:07 -050058 ],
Gavin Makea2e3302023-03-11 06:46:20 +000059 python_requires=">=3.6",
60 packages=["subcmds"],
Mike Frysinger5b3a57c2019-12-01 21:56:07 -050061)