-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 783 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (20 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
from xsellco_api import info
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name=info.__package_name__,
version=info.__version__,
author=info.__author__,
author_email=info.__email__,
description="Wrapper around Repricer.com API (aka Xsellco)",
long_description=long_description,
long_description_content_type="text/markdown",
url=info.__repo_url__,
project_urls={"Bug Tracker": info.__bug_tracker__},
license=info.__license__,
install_requires=["requests>=2.32.3", "httpx>=0.27.2"],
packages=["xsellco_api", "xsellco_api.api", "xsellco_api.sync", "xsellco_api.async_", "xsellco_api.common"],
python_requires=">=3.9",
keywords="xsellco, repricer",
)