-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (68 loc) · 2.45 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
# setup.py - setup script for the 'hg-convert-prcs-extension' package
# Copyright (C) 2019-2020 Kaz Nishimura
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option)
# any later version.
#
# 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/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
"""
setup script for the 'hg-convert-prcs-extension' package
"""
from __future__ import absolute_import
from os import path
from setuptools import setup
# Package name.
PACKAGE_NAME = "hg-convert-prcs-extension"
# Package version.
PACKAGE_VERSION = "3.0.0"
def long_description():
"""
return the long description from the 'README.md' file
"""
cwd = path.abspath(path.dirname(__file__))
with open(path.join(cwd, "README.md")) as stream:
# To ignore lines until a level-1 ATX header is found.
while True:
line = stream.readline()
if line.startswith("# "):
break
return line + stream.read()
if __name__ == "__main__":
setup(
name=PACKAGE_NAME,
version=PACKAGE_VERSION,
description="PRCS source for the Mercurial convert extension.",
url="https://vx68k.bitbucket.io/hg-convert-prcs/",
project_urls={
"Source": "https://github.com/vx68k/hg-convert-prcs-extension",
},
author="Kaz Nishimura",
author_email="[email protected]",
long_description=long_description(),
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Version Control",
],
python_requires=">=2.7",
install_requires=[
"mercurial>=4.7",
"prcslib>=4.1"
],
zip_safe=True,
packages=[
"hgext3rd.convert_prcs"
],
)