Skip to content
This repository has been archived by the owner on Feb 25, 2018. It is now read-only.

Commit

Permalink
add hg-git to install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
rfk committed Oct 4, 2011
1 parent 66fa780 commit 97d6a0d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
# This script is placed in the public domain.
#

from setuptools import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

# Extract the docstring and version declaration from the module.
# To avoid errors due to missing dependencies or bad python versions,
Expand Down Expand Up @@ -35,6 +38,7 @@
LICENSE = "MIT"
KEYWORDS = "git hg mercurial"
SCRIPTS = ["scripts/git-remote-hg"]
INSTALL_REQUIRES = ["hg-git"]
CLASSIFIERS = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
Expand All @@ -58,6 +62,7 @@
keywords=KEYWORDS,
packages=["git_remote_hg"],
scripts=SCRIPTS,
install_requires=INSTALL_REQUIRES,
classifiers=CLASSIFIERS
)

0 comments on commit 97d6a0d

Please sign in to comment.