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
|
Author: Daniel Baumann <mail@daniel-baumann.ch>
Description: Remove unecessary build dependencies.
diff -Naurp python-irc.orig/setup.py python-irc/setup.py
--- python-irc.orig/setup.py
+++ python-irc/setup.py
@@ -16,7 +16,7 @@ setup_params = dict(
name="irc",
description="IRC (Internet Relay Chat) protocol client library for Python",
long_description=read_long_description(),
- use_hg_version=True,
+ use_hg_version=False,
packages=setuptools.find_packages(),
author="Joel Rosdahl",
author_email="joel@rosdahl.net",
@@ -34,10 +34,6 @@ setup_params = dict(
install_requires=[
'six',
] + importlib_req + argparse_req,
- setup_requires=[
- 'hgtools',
- 'pytest-runner',
- ],
tests_require=[
'pytest',
'mock',
|