Skip to content

Commit

Permalink
Update to setup metadata including URL & dCA as maintainers (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb committed Feb 14, 2022
1 parent a56091c commit 9348023
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/usr/bin/env python
from pathlib import Path

from setuptools import find_packages, setup

from djangocms_snippet import __version__
Expand Down Expand Up @@ -35,6 +37,8 @@
'Topic :: Software Development :: Libraries',
]

this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()

setup(
name='djangocms-snippet',
Expand All @@ -46,8 +50,10 @@
url='https://github.com/django-cms/djangocms-snippet',
license='BSD-3-Clause',
description='Adds snippet plugin to django CMS.',
long_description=open('README.rst').read(),
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/x-rst',
packages=find_packages(exclude=['tests']),
python_requires='>=3.5',
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
Expand Down

0 comments on commit 9348023

Please sign in to comment.