-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
36 lines (30 loc) · 977 Bytes
/
setup.py
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
# coding: utf-8
from setuptools import setup, find_packages
import pathlib
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "talon-one-python-sdk"
VERSION = "6.1.1"
# Get the long description from the README.md file
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
setup(
name=NAME,
version=VERSION,
description="Talon.One Python SDK",
author="Talon.One GmbH",
author_email="devs@talon.one",
url="https://github.com/talon-one/talon_one.py/",
keywords=["talon","one","sdk"],
install_requires=REQUIRES,
license="MIT",
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description=long_description,
long_description_content_type='text/markdown'
)