diff --git a/README.rst b/README.rst index 0889d90..f29d1ce 100644 --- a/README.rst +++ b/README.rst @@ -48,3 +48,10 @@ p . . . . . . p P . . P . . . P . P P . . P P . . . K R . . . . + +Installing +---------- + +:: + + pip install python-lichess diff --git a/docs/index.rst b/docs/index.rst index 95d90c5..a68b0eb 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -59,3 +59,10 @@ p . . . . . . p P . . P . . . P . P P . . P P . . . K R . . . . + +Installing +---------- + +:: + + pip install python-lichess diff --git a/setup.py b/setup.py index d9af121..feabc8c 100644 --- a/setup.py +++ b/setup.py @@ -5,14 +5,18 @@ import platform import re +def read_description(): + return io.open(os.path.join(os.path.dirname(__file__), "README.rst"), encoding="utf-8").read() + setuptools.setup( name="python-lichess", - version='0.1', + version='0.3', description='A client for the lichess.org API', + long_description=read_description(), license="GPL3", keywords="chess lichess api", url="https://github.com/cyanfish/python-lichess", - packages=["lichess"], + packages=["lichess.api", "lichess.pgn"], python_requires=">=2.7,!=3.0.*,!=3.1.*,!=3.2.*", classifiers=[ "Development Status :: 4 - Beta",