File: setup.py

package info (click to toggle)
git-remote-hg 1.0.0~ds-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 472 kB
  • sloc: python: 2,148; sh: 2,073; makefile: 42
file content (53 lines) | stat: -rw-r--r-- 1,498 bytes parent folder | download
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
# git-remote-hg setuptools script

import setuptools
import subprocess
import sys
import os

# derive version from git repo
cmd = ["git", "describe", "--tags"]
commit = os.environ.get('REV', None)
if commit:
  cmd.append(commit)
process = subprocess.Popen(cmd, stdout=subprocess.PIPE)
version = process.communicate()[0].strip()
# strip leading v
version = version[1:]

# check for released version
assert (len(version) > 0)
assert (version.find('-') < 0)

long_description = \
"""
'git-remote-hg' is a gitremote protocol helper for Mercurial.
It allows you to clone, fetch and push to and from Mercurial repositories as if
they were Git ones using a hg::some-url URL.

See the homepage for much more explanation.
"""

CLASSIFIERS = [
    "Programming Language :: Python",
    "Programming Language :: Python :: 2",
    "Programming Language :: Python :: 2.7",
    "License :: OSI Approved",
    "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
]

setuptools.setup(name="git-remote-hg",
      version=version,
      author="Mark Nauwelaerts",
      author_email="mnauw@users.sourceforge.net",
      url="http://github.com/mnauw/git-remote-hg",
      description="access hg repositories as git remotes",
      long_description=long_description,
      license="GPLv2",
      keywords="git hg mercurial",
      scripts=["git-remote-hg", "git-hg-helper"],
      classifiers=CLASSIFIERS
     )