-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (31 loc) · 1.02 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
from cuefix import __version__
from setuptools import setup
with open('README.md') as readme:
long_description = readme.read()
setup(
name='cuefix',
version=__version__,
url='https://github.com/yinyanghu/cuefix',
autor='Jian Li',
author_email='lijianxp2005@gmail.com',
packages=['cuefix'],
description='A simple tool to fix problematic CUE files.',
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': ['cuefix=cuefix.cli:main'],
},
install_requires=[
'chardet >= 3.0.4',
],
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
)