forked from andresch/trackfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (37 loc) · 1.22 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
#
# fork of Copyright 2020-2021 by Andreas Schmidt
# All rights reserved.
# This file is part of the trackfs project
# and licensed under the terms of the GNU Lesser General Public License v3.0.
# See https://github.com/igor-epam/trackfs for details.
#
import setuptools
def slurp(fn):
with open(fn, "r", encoding="utf-8") as fh:
return fh.read()
setuptools.setup(
name="trackfsi",
version=slurp("VERSION"),
author="Andreas Schmidt",
author_email="[email protected]",
description="A read-only FUSE filesystem that splits FLAC+CUE files into individual FLAC files per track",
long_description=slurp("README.py.md"),
long_description_content_type="text/markdown",
url="https://github.com/igor-epam/trackfs",
packages=setuptools.find_packages(),
install_requires=[
"mutagen", "fusepy", "Lark", "chardet"
],
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: POSIX",
],
python_requires='>=3.7.8',
entry_points={
'console_scripts': [
'trackfsi=trackfs.__init__:main'
],
}
)