-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (48 loc) · 1.27 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import os
import sys
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
py_version = sys.version_info[:2]
if py_version < (3, 6):
raise Exception("flac2mp3 requires Python >= 3.6.")
with open(os.path.join(here, 'README.rst')) as readme:
README = readme.read()
NAME = 'flac2mp3'
install_requires = [
'argparse==1.4.0'
]
tests_require = [
'nose==1.3.7',
'eyeD3==0.9.5',
'bumpversion==0.5.3'
]
setup(
name=NAME,
version='0.7.0',
description='Python flac2mp3 transcoding script',
long_description=README,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
author='Bruno Thomas',
author_email='bruno@barreverte.fr',
license='MIT',
url='https://github.com/bamthomas/flac2mp3',
keywords='transcoding mp3 lame flac',
packages=['flac2mp3'],
include_package_data=True,
zip_safe=False,
test_suite="nose.collector",
install_requires=install_requires,
extras_require={
'dev': tests_require,
},
entry_points={
'console_scripts': [
'flac2mp3 = flac2mp3.__init__:main'
]
},
)