-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·52 lines (42 loc) · 1.24 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·52 lines (42 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# coding: utf-8
"""
Karrio Open Source Multi-carrier Shipping API
OpenAPI spec version: 2021.11
Contact: hello@karrio.io
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from setuptools import setup, find_packages # noqa: H301
with open("README.md", "r") as fh:
long_description = fh.read()
NAME = "karrio-python"
VERSION = "2022.3"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
]
setup(
name=NAME,
version=VERSION,
description="karrio universal Shipping API Python client library",
long_description=long_description,
long_description_content_type="text/markdown",
author_email="hello@karrio.io",
url="https://github.com/karrioapi/karrio-python",
keywords=["Karrio", "Multi-carrier API", "Shipping API"],
install_requires=REQUIRES,
packages=find_packages(exclude=["test*"]),
include_package_data=True,
python_requires='>=3.6',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
zip_safe=False
)