-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 999 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
37
# read the contents of your README file
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="py_sat_sdk",
packages=find_packages(),
version="1.0.8",
description="Python SDK for Tokopedia SAT API",
author="SAT Team",
install_requires=[
"requests>=2.27.1",
"requests-oauthlib>=2.0.0",
"pycryptodome>=3.11.0",
"dataclasses-json>=0.5.9",
"python-dateutil>=2.9.0.post0",
],
extras_require={
"test": [
"pytest>=4.4.1",
"pytest-sugar",
"pytest-dotenv>=0.5.2",
"pytest-httpserver>=1.0.5",
],
},
test_suite="tests",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
],
long_description=long_description,
long_description_content_type="text/markdown",
)