-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (33 loc) · 1 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
"""Setup module for music modify.
"""
import os
from setuptools import setup, find_packages
def read(fname: str):
"""Read a file and save the text from that file.
Parameters
----------
fname : [str] -
The file that should be read.
Returns
-------
[str] -
The text from the file.
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='music_modify',
version='1.0.0',
author='Kyzan Hartwig',
author_email='kzn.hartwig1@gmail.com',
description=("App that allows a user to modify the tags for their "
"music files, and download information from "
"different music websites."
),
license='GNU GPL v3',
keywords="mp3 music tags",
url="https://github.com/KyzanHartwig/Music-Modify",
long_description=read('README.md'),
package_dir={"": "music_modify"},
packages=find_packages(where="music_modify", exclude=["config"]),
python_requires='>=3.8',
)