Skip to content

Commit

Permalink
Get rid of pbr (was requirement for Debian package)
Browse files Browse the repository at this point in the history
and use a regular setup.py.
  • Loading branch information
JOJ0 committed Dec 31, 2024
1 parent f05a31e commit 49671f9
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 53 deletions.
48 changes: 0 additions & 48 deletions setup.cfg

This file was deleted.

49 changes: 44 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,47 @@
#!/usr/bin/env python

from setuptools import setup
from setuptools import setup, find_packages

setup(
setup_requires=['pbr'],
pbr=True,
name="discodos",
version="3.0.0",
description="DJ and record collector's toolbox for Discogs",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
author="J0J0 Todos",
url="https://discodos.jojotodos.net",
project_urls={
"Bug Tracker": "https://github.com/joj0/discodos/issues",
"Documentation": "https://discodos.readthedocs.io",
"Source Code": "https://github.com/joj0/discodos/",
},
packages=find_packages(where=".", include=["discodos"]),
test_suite="tests",
license="GPLv3+",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio",
"Environment :: Console",
],
entry_points={
"console_scripts": [
"discosync = discodos.cmd.sync:main",
"dsc = discodos.cmd23:main_cmd",
],
},
flake8_ignore=["E501", "E225"],
exclude=[
".git",
"__pycache__",
"docs/source/conf.py",
"old",
"build",
"dist",
".eggs",
"discodos_logo.py",
],
)

0 comments on commit 49671f9

Please sign in to comment.