Introduce ChangeLog
This commit is contained in:
6
ChangeLog.rst
Normal file
6
ChangeLog.rst
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
Change Log
|
||||||
|
==========
|
||||||
|
New in version 1.2.9
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
* Introduced PooledClient a thread-safe pool of clients
|
||||||
9
setup.py
9
setup.py
@@ -1,9 +1,16 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
import os
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
from pymemcache import __version__
|
from pymemcache import __version__
|
||||||
|
|
||||||
|
def read(fname):
|
||||||
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||||
|
|
||||||
|
readme = read('README.md')
|
||||||
|
changelog = read('ChangeLog.rst')
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='pymemcache',
|
name='pymemcache',
|
||||||
version=__version__,
|
version=__version__,
|
||||||
@@ -12,7 +19,7 @@ setup(
|
|||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
install_requires=['six'],
|
install_requires=['six'],
|
||||||
description='A comprehensive, fast, pure Python memcached client',
|
description='A comprehensive, fast, pure Python memcached client',
|
||||||
long_description=open('README.md').read(),
|
long_description=readme + '\n' + changelog,
|
||||||
license='Apache License 2.0',
|
license='Apache License 2.0',
|
||||||
url='https://github.com/Pinterest/pymemcache',
|
url='https://github.com/Pinterest/pymemcache',
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|||||||
Reference in New Issue
Block a user