-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
51 lines (45 loc) · 1.51 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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
# dephell made a fucking duplicate .rst README...
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ''
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, 'README.md')
if os.path.exists(readme_path):
with open(readme_path, 'rb') as stream:
readme = stream.read().decode('utf8')
setup(
long_description=readme,
long_description_content_type='text/markdown',
name='heybrochecklog',
version='1.3.3',
description='A python tool for evaluating and working with EAC/XLD rip logs.',
python_requires='==3.*,>=3.5.0',
project_urls={"repository": "https://github.com/ligh7s/hey-bro-check-log"},
author='lights',
author_email='lights@tutanota.de',
license='Apache-2.0',
keywords='logchecker eac xld',
entry_points={
"console_scripts": ["heybrochecklog = heybrochecklog.__main__:runner"]
},
packages=[
'heybrochecklog', 'heybrochecklog.markup', 'heybrochecklog.resources',
'heybrochecklog.score', 'heybrochecklog.score.modules',
'scripts.eac95_builder'
],
package_dir={"": "."},
package_data={
"heybrochecklog.resources": [
"*.db", "*.json", "eac/*.json", "eac95/*.json"
]
},
install_requires=['cchardet>=2.1.7'],
extras_require={"dev": ["pytest==5.*,>=5.3.5"]},
)