A => MANIFEST.in +7 -0
@@ 0,0 1,7 @@
+include LICENSE.txt
+include requirements.txt
+include dev-requirements.txt
+include CONTRIBUTORS.txt
+include pylintrc
+include setup.cfg
+include tests/*.py
No newline at end of file
M setup.cfg +2 -2
@@ 1,10 1,10 @@
[setup]
name = lairucrem
-version = 0.2.0
+version = 0.3.0
author = Alain Leufroy
author_email = Alain Leufroy <alain leufroy.fr>
url = http://bitbucket.org/aleufroy/lairucrem
-download_url = http://bitbucket.org/aleufroy/lairucrem/get/0.2.0.zip
+download_url = http://bitbucket.org/aleufroy/lairucrem/get/0.3.0.zip
keywords = dvcs, mercurial, UI, interactive, console
classifiers = Environment :: Console :: Curses
License :: Freely Distributable
M setup.py +3 -3
@@ 16,8 16,8 @@ except ImportError: # python2 support
import ConfigParser as configparser
# I do not want to document it :P
-USE_SETUPTOOLS = os.environ.get('USE_SETUPTOOLS')
-if USE_SETUPTOOLS:
+NO_SETUPTOOLS = os.environ.get('NO_SETUPTOOLS')
+if not NO_SETUPTOOLS:
import setuptools
# DRY: retrieve data from external files
@@ 54,7 54,7 @@ def get_descriptions():
def get_dependencies():
"""Read dependencies from requirements.txt"""
install_requires = []
- if not USE_SETUPTOOLS:
+ if NO_SETUPTOOLS:
return install_requires
with open(b'requirements.txt', b'r',) as requirements:
for line in requirements: