-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 873 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 873 Bytes
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
"""Library Metadata Information."""
from setuptools import find_packages
from setuptools import setup
description = ('Configurable wrapper around Fynd APIs which helps '
'to call Fynd APIs using function and classes.')
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='fdk_client',
version='3.26.0',
author='Manish Magnani',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/gofynd/fdk-client-python',
packages=find_packages(
exclude=('tests*', 'documentation', '_macros')),
license='',
install_requires=[
"aiohttp>=3.9.2",
"marshmallow>=3.12.2",
"pytz>=2020.1",
"ujson>=1.35",
],
classifiers=[
'Programming Language :: Python :: 3.8.2'
],
)