Skip to content

Commit

Permalink
fix: adjust setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed Jun 25, 2023
1 parent ffe1615 commit 3285528
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
from pathlib import Path
from setuptools import find_packages
from setuptools import setup


version = "3.0.2.dev0"

long_description = (
f"{Path('README.rst').read_text()}\n{Path('CHANGES.rst').read_text()}"
)

setup(
name="plone.browserlayer",
version=version,
description="Browser layer management for Zope applications",
long_description=(open("README.rst").read() + "\n" + open("CHANGES.rst").read()),
long_description=long_description,
long_description_content_type="text/x-rst",
# Get more strings from
# https://pypi.org/classifiers/
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
Expand Down

0 comments on commit 3285528

Please sign in to comment.