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 Dec 22, 2023
1 parent 26ae2d0 commit ebe23b2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
from pathlib import Path
from setuptools import find_packages
from setuptools import setup


with open("README.rst") as myfile:
long_description = myfile.read() + "\n"
with open("CHANGES.rst") as myfile:
long_description += myfile.read()
version = "4.0.3.dev0"

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

setup(
name="Products.CMFEditions",
version=version,
description="Versioning for Plone",
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 ebe23b2

Please sign in to comment.