From 5b0fd57edd30eb6e901289b56279489498ee6652 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Fri, 22 Jun 2018 14:59:00 +0300 Subject: Setuptool update --- setup.py | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/setup.py b/setup.py index 5b90093..98f58e8 100644 --- a/setup.py +++ b/setup.py @@ -1,26 +1,30 @@ from setuptools import setup, find_packages from gsxws.core import VERSION +with open('README.md', 'r') as fh: + long_description = fh.read() + setup( - name="gsxws", + name='gsxws', version=VERSION, - description="Library for communicating with GSX Web Services API.", - long_description=open('README.md').read(), + description='Library for communicating with GSX Web Services API.', + long_description=long_description, + long_description_content_type='text/markdown', install_requires=['PyYAML', 'lxml', 'requests'], classifiers=[ - "Environment :: Web Environment", - "Intended Audience :: Developers", - "License :: OSI Approved :: BSD License", - "Operating System :: OS Independent", - "Programming Language :: Python", - "Topic :: Internet :: WWW/HTTP" + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', + 'Programming Language :: Python', + 'Topic :: Internet :: WWW/HTTP', ], - keywords="gsx, python", - author="Filipp Lepalaan", - author_email="filipp@fps.ee", - url="https://github.com/filipp/py-gsxws", - download_url="https://github.com/filipp/py-gsxws/tarball/0.55", - license="BSD", + keywords='gsx, python', + author='Filipp Lepalaan', + author_email='filipp@fps.ee', + url='https://github.com/filipp/py-gsxws', + download_url='https://github.com/filipp/py-gsxws/tarball/latest', + license='BSD', packages=find_packages(), package_data={'gsxws': ['products.yaml', 'langs.json']} ) -- cgit v1.2.3