Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
alicflorez authored Oct 22, 2018
1 parent 4cd0fa0 commit 1757d0c
Showing 1 changed file with 26 additions and 10 deletions.
36 changes: 26 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,39 @@
#
# Distributed under terms of the MIT license.

from setuptools import setup
import setuptools

tests_require = [
'pytest',
'pytest-pep8',
'pytest-cov',
]

setup(
name='pydelivengo',
with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="pydelivengo",
version="v1.3",
license='MIT',
version = 'v1.3',
description = 'A lib to use MyDelivengo API',
author = 'Alicia FLOREZ',
author_email = '[email protected]',
url = 'https://github.com/alexandriagroup/pydelivengo',
download_url = 'https://github.com/alexandriagroup/pydelivengo/archive/v1.3.tar.gz',
keywords=['api', 'mydelivengo', 'python', 'webservices', 'la poste'],
author="Alicia FLOREZ",
author_email="[email protected]",
description="A lib to use MyDelivengo API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/alexandriagroup/pydelivengo",
project_urls = {
'Source': 'https://github.com/alexandriagroup/pydelivengo/archive/v1.3.tar.gz',
'Documentation': 'https://alexandriagroup.github.io/pydelivengo/',
'Travis': 'https://travis-ci.org/alexandriagroup/pydelivengo',
},
packages=['pydelivengo'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Development Status :: 5 - Production/Stable',
],
keywords='api mydelivengo python3 webservices',

)

0 comments on commit 1757d0c

Please sign in to comment.