-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4cd0fa0
commit 1757d0c
Showing
1 changed file
with
26 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|
||
) |