-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (47 loc) · 1.69 KB
/
setup.py
File metadata and controls
51 lines (47 loc) · 1.69 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
50
51
"""Setup script for Affinity CLI."""
from pathlib import Path
from setuptools import find_packages, setup
# Read long description from README
readme_file = Path(__file__).parent / "README.md"
long_description = readme_file.read_text() if readme_file.exists() else ""
setup(
name="affinity-cli",
version="1.1.1",
author="ind4skylivey",
description="Universal CLI installer for Affinity products on Linux",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ind4skylivey/affinity-cli",
packages=find_packages(include=["affinity_cli*"]),
include_package_data=True,
python_requires=">=3.8",
install_requires=[
"click>=8.1.0",
"requests>=2.31.0",
"rich>=13.0.0",
"tqdm>=4.66.0",
"tomli; python_version < '3.11'",
],
entry_points={
"console_scripts": [
"affinity-cli=affinity_cli.main:main",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: System :: Installation/Setup",
"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",
"Operating System :: POSIX :: Linux",
],
keywords="affinity wine linux installer cli photo designer publisher",
project_urls={
"Bug Reports": "https://github.com/ind4skylivey/affinity-cli/issues",
"Source": "https://github.com/ind4skylivey/affinity-cli",
},
)