-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.52 KB
/
setup.py
File metadata and controls
50 lines (47 loc) · 1.52 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages # noqa: H301
with open("README.md") as f:
long_description = f.read()
NAME = "refurbished"
setup(
name=NAME,
version="0.12.1",
description="Library to search refurbished products on the Apple Store",
author="Maurizio Branca",
author_email="maurizio.branca@gmail.com",
url="https://github.com/zmoog/refurbished",
scripts=['cli/rfrb'],
keywords=[],
install_requires=[
"beautifulsoup4 >= 4.11.1",
"click ==8.1.8",
"price-parser == 0.3.4",
"pydantic >=2.10,<3.0",
"requests >= 2.28.1",
"rich >= 12.6.0",
],
extras_require={
"test": [
"pytest==7.2.1",
"black==22.12.0",
"isort==7.0.0",
"flake8==6.1.0",
],
},
packages=find_packages(exclude=["test", "tests"]),
python_requires=">=3.10",
classifiers=[ # https://pypi.org/classifiers/
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
)