-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.11 KB
/
Copy pathsetup.py
File metadata and controls
34 lines (31 loc) · 1.11 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
from setuptools import find_packages, setup
from rave_python import __version__
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="rave_python",
version=__version__,
author="Flutterwave",
author_email="developers@flutterwavego.com",
description="Python library for Flutterwave for Business (F4B) v2 APIs.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Flutterwave/rave-python",
license="MIT",
packages=find_packages(exclude=["tests*"]),
python_requires=">=3.10",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"pycryptodome>=3.10.0",
"requests>=2.20.0",
],
)