-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 857 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
import pathlib
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
REQUIRES = [
"httpx >= 0.15.0, < 0.24.0",
"attrs >= 21.3",
"python-dateutil >= 2.8.0, < 3",
"boto3 ~= 1.24",
"requests ~= 2.25",
"frozendict ~= 2.3",
"pandas ~= 1.5.2",
]
setup(
name="priceloop-api",
version="0.213.6",
description="A client library for accessing Priceloop API",
author="Priceloop",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/priceloop/priceloop-api-python",
packages=find_packages(),
python_requires=">=3.7, <4",
install_requires=REQUIRES,
package_data={"priceloop_api": ["py.typed"]},
)