-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.48 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (37 loc) · 1.48 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="profitengine",
version="1.0.0",
author="DevToolbox",
author_email="devtoolbox@profitengine-api.com",
description="Official Python client for the ProfitEngine API -- 32+ developer tools",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/northlight7/profitengine-python",
project_urls={
"Bug Tracker": "https://github.com/northlight7/profitengine-python/issues",
"Documentation": "https://github.com/northlight7/profitengine-python",
"API Reference": "https://rapidapi.com/Midas7742/api/profitengine-api",
},
py_modules=["profitengine"],
python_requires=">=3.8",
install_requires=[
"requests>=2.25.0",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
)