This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (53 loc) · 1.51 KB
/
setup.py
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
52
53
54
55
56
57
58
59
60
"""Setup file for the library."""
from pathlib import Path
from setuptools import find_packages, setup
from moadaly.__about__ import (
APP_VERSION,
__author__,
__description__,
__license__,
__maintainer__,
)
HERE = Path(__file__).parent
README = (HERE / "README.md").read_text()
URL = "https://github.com/zer0-x/moadaly"
ISSUES = "https://github.com/zer0-x/moadaly/issues"
CHANGELOG = "https://github.com/zer0-x/moadaly/blob/main/CHANGELOG.md"
setup(
name="moadaly",
version=APP_VERSION,
author=__author__,
maintainer=__maintainer__,
license=__license__,
description=__description__,
long_description_content_type="text/markdown",
long_description=README,
url=URL,
project_urls={
"Issues": ISSUES,
"Changelog": CHANGELOG,
},
packages=find_packages(),
entry_points={"console_scripts": ["moadaly = moadaly.__main__:main"]},
keywords=[
"gpa",
"gpa-calculator",
"cgpa",
"qt6",
"pyside6",
"gpa-calculation-tool",
"gui-application",
"linux_desktop",
"database-gui",
],
classifiers=[
"Environment :: X11 Applications :: Qt",
"Environment :: X11 Applications :: KDE",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Education",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)