mediacurator/setup.py
Fabrice Quenneville 80ef63eccd Rename MediaCurator to mediacurator and update to version 1.0.1
- Breaking change: Renamed the project from 'MediaCurator' to 'mediacurator' to standardize naming conventions (all lowercase).
- Updated all references across documentation and source files:
  - README.md
  - Various .rst documentation files (installation, manual, use cases, errors, warnings)
  - Python source files in 'mediacurator/library' and main 'mediacurator.py'
  - setup.py
- Incremented version from 0.0.13 to 1.0.1 to reflect breaking changes.
- Added release notes for 1.0.1 in docsource/source/releasenotes/1.0.1-changelog.rst
2024-10-17 19:58:25 -04:00

47 lines
1.6 KiB
Python
Executable File

#!/usr/bin/env python3
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="mediacurator",
version="0.0.13",
author="Fabrice Quenneville",
author_email="fab@fabq.ca",
url="https://github.com/fabquenneville/mediacurator",
download_url="https://pypi.python.org/pypi/mediacurator",
project_urls={
"Bug Tracker": "https://github.com/fabquenneville/mediacurator/issues",
"Documentation": "https://fabquenneville.github.io/mediacurator/",
"Source Code": "https://github.com/fabquenneville/mediacurator",
},
description="mediacurator is a Python command line tool to manage a media database.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Topic :: Multimedia :: Video :: Conversion",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Environment :: Console",
],
entry_points = {
'console_scripts': ['mediacurator=mediacurator.mediacurator:main'],
},
keywords=[
"codecs", "filters", "video", "x265", "av1", "media-database", "python-command", "hevc"
],
install_requires=[
"pathlib","colorama"
],
license='GPL-3.0',
python_requires='>=3.6',
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=True,
)