appdirs Changelog
=================
-appdirs 1.4.1
+appdirs 1.4.2
-------------
+- [PR #84] Allow installing without setuptools
+- [PR #86] Fix string delimiters in setup.py description
+- Add Python 3.6 support
+appdirs 1.4.1
+-------------
- [issue #38] Fix _winreg import on Windows Py3
- [issue #55] Make appname optional
# - Mac OS X: http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/index.html
# - XDG spec for Un*x: http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
-__version_info__ = (1, 4, 1)
+__version_info__ = (1, 4, 2)
__version__ = '.'.join(map(str, __version_info__))
import sys
import os
import os.path
-from setuptools import setup
+# appdirs is a dependency of setuptools, so allow installing without it.
+try:
+ from setuptools import setup
+except ImportError:
+ from distutils.core import setup
import appdirs
tests_require = []
setup(
name='appdirs',
version=appdirs.__version__,
- description='A small Python module for determining appropriate " + \
- "platform-specific dirs, e.g. a "user data dir".',
+ description='A small Python module for determining appropriate ' + \
+ 'platform-specific dirs, e.g. a "user data dir".',
long_description=read('README.rst') + '\n' + read('CHANGES.rst'),
classifiers=[c.strip() for c in """
Development Status :: 4 - Beta
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
+ Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation :: PyPy
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Libraries :: Python Modules
[tox]
-envlist = py26, py27, py32, py33, py34, py35
+envlist = py26, py27, py32, py33, py34, py35, py36
[testenv]
commands = python setup.py test