forked from Pawikoski/vinted-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 895 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 895 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
setup(
name="vinted-api-wrapper",
version="0.3.9",
description="Unofficial Wrapper for Vinted API",
author="Paweł Stawikowski",
author_email="pawikoski@gmail.com",
packages=find_packages(),
url="https://github.com/Pawikoski/vinted-api-wrapper",
python_requires=">=3.10",
install_requires=["cloudscraper", "dacite", "beautifulsoup4"],
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)