-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Get rid of pbr (was requirement for Debian package)
and use a regular setup.py.
- Loading branch information
Showing
2 changed files
with
44 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
], | ||
) | ||
|