-
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) · 857 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 857 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 setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
setup(
name='restocks_api_wrapper',
version='0.1.2',
packages=find_packages(exclude=("tests",)),
url='https://github.com/AkiLetschne/restocks_api_wrapper',
license='MIT',
author='AkiLetschne',
description='A unofficial Python wrapper for the Restocks.net API',
long_description=readme,
long_description_content_type="text/markdown",
install_requires=["requests", "lxml"],
python_requires='>=3.11',
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
)