-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.51 KB
/
setup.py
File metadata and controls
49 lines (45 loc) · 1.51 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
"""Setup script for luno-python package."""
from pathlib import Path
from setuptools import find_packages, setup
from luno_python import VERSION
setup(
name="luno-python",
version=VERSION,
packages=find_packages(exclude=["tests"]),
description="A Python client for the Luno cryptocurrency exchange API",
long_description=(Path(__file__).parent / "README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
author="Neil Garb",
author_email="neil@luno.com",
install_requires=["requests>=2.18.4", "six>=1.11.0"],
license="MIT",
url="https://github.com/luno/luno-python",
download_url=f"https://github.com/luno/luno-python/tarball/{VERSION}",
python_requires=">=3.11",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
keywords="Luno API Bitcoin Ethereum",
test_suite="tests",
setup_requires=["pytest-runner"],
extras_require={
"test": ["pytest", "pytest-cov", "requests_mock"],
"dev": [
"pytest",
"pytest-cov",
"requests_mock",
"pre-commit",
"black",
"isort",
"flake8",
"flake8-docstrings",
"flake8-bugbear",
"bandit[toml]",
],
},
)