aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2018-06-22 14:59:00 +0300
committerFilipp Lepalaan <filipp@mac.com>2018-06-22 14:59:00 +0300
commit5b0fd57edd30eb6e901289b56279489498ee6652 (patch)
treedd9d7bf07048b78a8dce1120925a6700477586fe
parent6641ee39fcd7ccc67ffec3ebcecff17768d6ffc6 (diff)
downloadpy-gsxws-5b0fd57edd30eb6e901289b56279489498ee6652.tar.gz
py-gsxws-5b0fd57edd30eb6e901289b56279489498ee6652.tar.bz2
py-gsxws-5b0fd57edd30eb6e901289b56279489498ee6652.zip
Setuptool update
-rw-r--r--setup.py34
1 files 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']}
)