File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77from setuptools import setup , find_packages
88from os import path
99from distutils .cmd import Command
10-
10+ from pathlib import Path
1111
1212@contextlib .contextmanager
1313def _save_argv (repl = None ):
@@ -105,10 +105,13 @@ def run(self):
105105 'splitapiclient' , 'version.py' )) as f :
106106 exec (f .read ())
107107# Run setup!
108+ this_directory = Path (__file__ ).parent
108109setup (
109110 name = 'splitapiclient' ,
110111 version = __version__ , # noqa
111- description = 'Split.io Identify Python Client' ,
112+ description = 'This Python Library provide full support for Split REST Admin API' ,
113+ long_descrpition = (this_directory / "README.md" ).read_text (),
114+ long_description_content_type = 'text/markdown' ,
112115 author = 'Patricio Echague, Sebastian Arrubia, Martin Redolatti' ,
113116 author_email = 'pato@split.io, sebastian@split.io, martin@split.io' ,
114117 url = 'https://github.com/splitio/python-api' ,
You can’t perform that action at this time.
0 commit comments