-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 967 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 967 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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
NAME = "dataforseo-client"
VERSION = "2.0.21"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3",
"python-dateutil",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
]
setup(
name=NAME,
version=VERSION,
description="DataForSEO API documentation",
author="DataForSeo",
author_email="info@dataforseo.com",
url="https://github.com/dataforseo/PythonClient",
keywords=["OpenAPI", "DataForSEO", "DataForSEO API documentation"],
install_requires=REQUIRES,
homepage="https://github.com/dataforseo/PythonClient",
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description=long_description,
long_description_content_type='text/markdown',
package_data={"dataforseo_client": ["py.typed"]},
)