-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.15 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.15 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
from setuptools import setup, find_packages
from os.path import abspath, dirname, join
with open(join(dirname(abspath(__file__)), "README.md")) as f:
README_MD = f.read()
setup(
name="currencyapinet",
version="2.1.0",
packages=find_packages(exclude="tests"),
description="Python wrapper for CurrencyApi.net",
long_description=README_MD,
long_description_content_type="text/markdown",
url="https://currencyapi.net/sdk/python",
author="Oli Girling",
author_email="support@currencyapi.net",
python_requires=">=3.10",
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"requests"
],
keywords="currency feed, currency rates, currencyapi, currency",
)