-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (25 loc) · 834 Bytes
/
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
import pathlib
import setuptools
REPO = pathlib.Path(__file__).parent
setuptools.setup(
name='harmonize',
version='1.0.2',
author='Andrew Rabert',
author_email='[email protected]',
description='Create and synchronize transcoded copies of audio folders',
long_description=REPO.joinpath('README.rst').read_text(),
url='https://github.com/nvllsvm/harmonize',
install_requires=['mutagen>=1.40.0'],
license='Apache 2.0',
packages=['harmonize'],
entry_points={
'console_scripts': ['harmonize=harmonize.__main__:main']
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only'
],
python_requires='>=3.8'
)