-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
49 lines (47 loc) · 1.76 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
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="django-music-publisher",
version="24.12.1",
author="Matija Kolarić",
author_email="matijakolaric@users.noreply.github.com",
license="MIT License",
description=(
"Software for managing music metadata, batch registration "
"of musical works, royalty processing and data exchange."
),
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://django-music-publisher.readthedocs.io/",
project_urls={
"Created by": "https://matijakolaric.com",
"Video Tutorials": "https://www.youtube.com/watch?v=Tyk6tYuFBrI"
"&list=PLQ3e-DuNTFt-mwtKvFLK1euk5uCZdhCUP",
"Documentation": "https://django-music-publisher.readthedocs.io/",
"Code Repository": "https://github.com/matijakolaric-com/django"
"-music-publisher/",
},
packages=setuptools.find_packages(exclude=["dmp_project", "docs"]),
install_requires=(
"Django>=4.2.13,<5.0",
"requests>=2.32.3",
),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
zip_safe=False,
)