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 Oct 15, 2023
1 parent 263118a commit 01e058f
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
from pathlib import Path
from setuptools import find_packages
from setuptools import setup

import os


version = "7.0.2.dev0"

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

tests_require = [
"plone.testing[test]",
"Products.CMFPlone",
Expand All @@ -26,19 +30,14 @@
"selenium",
]


def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()


long_description = read("docs", "README.rst") + "\n\n" + read("CHANGES.rst")


setup(
name="plone.app.testing",
version=version,
description="Testing tools for Plone-the-application, based on plone.testing.",
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 01e058f

Please sign in to comment.