forked from griffin962/backendbois
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (25 loc) · 836 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·32 lines (25 loc) · 836 Bytes
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
#!/usr/bin/env python3
from pathlib import Path
import setuptools
import klap4
current_dir = Path(__file__).absolute().parent
# KLAP4 module short description.
short_description = "KMNR Music Library Interface"
try: # Try and read the README.md file for the long description.
with (current_dir.parent/"README.md").open('r') as readme_file:
long_description = readme_file.read()
except FileNotFoundError:
long_description = short_description
setuptools.setup(
name="KLAP 4",
version=klap4.__version__,
description=short_description,
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: Unix"
],
python_requires=">=3.7"
)