summaryrefslogtreecommitdiff
path: root/setup.cfg
Commit message (Collapse)AuthorAgeFilesLines
* Fix long_description string in Python packaging (#249)v2.2.2Jon Parise2019-08-061-2/+1
| | | | | When defining `long_description` in setup.cfg using the `file:` directive, we need to keep everything on one line. Otherwise, it will treat the value as a block of literal text.
* Set `long_description_content_type = text/x-rst`Jon Parise2019-07-301-0/+1
|
* Normalize the repository URL (#238)Jon Parise2019-07-051-1/+1
|
* Drop official support for Python 3.4 (#234)Jon Parise2019-06-071-1/+0
| | | | Python 3.4 has reached end-of-life so remove it from the set of officially supported Python versions.
* Introduce package metadata configuration by using setup.cfgHervé Beraud2019-02-211-9/+38
| | | | | | | | | | | | Since setuptools 30.3.0 we can use setup.cfg to configure package for build and distribute. These changes propose to adopt a more modern approach to package pymemcache by using latest and stable feature of setuptools. Overview: - remove python code to maintain - introduce package metadata, - centralize version management in package metadata
* Parse version directly from pymemcache/__init__.pyJon Parise2019-01-281-8/+0
| | | | | | | | | | | We can no longer import the __version__ attribute because there is no an implicit runtime dependency on six (as of #197), and we can't guarantee that six is installed until *after* setup.py is parsed and run. Instead, parse the `__version__ = 'x.y.z'` string from __init__.py to extract the version. Fixes #214
* Omit test/* code from the coverage reportJon Parise2019-01-071-1/+4
|
* Bump version to 2.0.0Joe Gordon2018-09-121-1/+1
|
* Bump versionnew-release-144Nicholas Charriere2018-01-071-1/+1
|
* Exclude well-known non-code paths from flake8Jon Parise2017-05-051-0/+1
| | | | Also fix a minor flake8 issue in setup.py.
* Bump version to 1.4.3release-143Nicholas Charriere2017-04-041-3/+1
|
* Bump version to 1.4.2Nicholas Charriere2017-02-231-1/+1
|
* Bump version to 1.4.1prelease-141Nicholas Charriere2017-02-181-1/+1
|
* Bump version to 1.4.0prerelease-140Nicholas Charriere2016-11-051-1/+1
|
* Make line length reqs explicitpep8Nicholas Charriere2016-11-051-0/+1
|
* Bump version to 1.3.8release-138Nicholas Charriere2016-10-041-1/+1
|
* Release 1.3.7Nicholas Charriere2016-10-031-3/+3
|
* Prevent pytest-warning on pytest 3.0+Adam Chainz2016-08-241-3/+3
| | | | Prevent `WC1 None [pytest] section in setup.cfg files is deprecated, use [tool:pytest] instead.`, as per pytest-dev/pytest#567.
* BumpversionreleaseNicholas Charriere2016-07-271-19/+19
|
* Preparing for release 1.3.6: adding bumpversion config and changelogv1.3.6Nicholas Charriere2016-07-271-0/+7
|
* setup.cfg - fix [wheel] -> [bdist_wheel]Adam Chainz2016-04-151-1/+1
| | | | [wheel] is legacy, [bdist_wheel] is the future. See https://bitbucket.org/pypa/wheel/src/4da780b849affbff98a0defb21ad1f30a94d6f57/wheel/bdist_wheel.py?at=default&fileviewer=file-view-default#bdist_wheel.py-119
* Setup pytest configuration for benchmarksJohn Anderson2015-07-021-0/+1
| | | | | Using tox -e py27 -- -m benchmark or pytest -m benchmark you can now run the benchmarking tests
* flake8 the testsJohn Anderson2015-06-201-1/+0
|
* Merge branch 'flake8' of https://github.com/sontek/pymemcache into ↵John Anderson2015-06-201-0/+4
|\ | | | | | | | | | | | | | | | | switch_to_pytest Conflicts: setup.cfg setup.py tox.ini
| * Flake8/pep8 the codeJohn Anderson2015-06-191-0/+4
| |
* | Finished porting integration tests to pytestJohn Anderson2015-06-191-0/+5
| |
* | Move to use pytest instead of noseJohn Anderson2015-06-191-0/+11
|/
* Add setup.cfg to make universal wheel.INADA Naoki2014-04-161-0/+2