-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (52 loc) · 1.93 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
56
57
58
59
60
61
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
#
# copyright: 2020-2022, Frederico Martins
# author: Frederico Martins <http://github.com/fscm>
# license: SPDX-License-Identifier: MIT
"""Setup discogs2xlsx."""
from setuptools import find_packages, setup
from discogs2xlsx import (
__author__, __license__, __project__, __version__)
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Utilities',
'Typing :: Typed']
DESCRIPTION = 'Exports your Discogs collection or wantlist into a xlsx file.'
ENTRY_POINTS={
'console_scripts': [f'{__project__} = {__project__}.__main__:main']}
KEYWORDS = ['discogs', 'xlsx']
PROJECT_URLS = {
'Documentation': f'http://fscm.github.io/{__project__}',
'Source': f'https://github.com/fscm/{__project__}'}
PYTHON_REQUIRES = '>=3.9, <4'
URL = f'https://github.com/fscm/{__project__}'
with open('requirements.txt', 'r', encoding='utf-8') as r:
DEPENDENCIES = [p.strip() for p in r if not p.strip().startswith('#')]
with open('README.md', 'r', encoding='utf-8') as d:
LONG_DESCRIPTION = d.read()
if __name__ == '__main__':
setup(
author=__author__,
classifiers=CLASSIFIERS,
description=DESCRIPTION,
entry_points=ENTRY_POINTS,
install_requires=DEPENDENCIES,
keywords=KEYWORDS,
license=__license__,
license_files=['LICENSE'],
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
name=__project__,
package_data={__project__: ['py.typed', '*.pyi']},
packages=find_packages(exclude=['tests']),
project_urls=PROJECT_URLS,
python_requires=PYTHON_REQUIRES,
url=URL,
version=__version__)