-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
134 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,16 +3,18 @@ | |
|
||
from setuptools import find_packages, setup | ||
|
||
long_description = '\n\n'.join([ | ||
open('README.rst').read(), | ||
open('CONTRIBUTORS.rst').read(), | ||
open('CHANGES.rst').read(), | ||
]) | ||
long_description = "\n\n".join( | ||
[ | ||
open("README.rst").read(), | ||
open("CONTRIBUTORS.rst").read(), | ||
open("CHANGES.rst").read(), | ||
] | ||
) | ||
|
||
|
||
setup( | ||
name='bda.plone.wallee', | ||
version='1.0a1', | ||
name="bda.plone.wallee", | ||
version="1.0a1", | ||
description="Wallee payment integration for bda.plone.shop", | ||
long_description=long_description, | ||
# Get more from https://pypi.org/classifiers/ | ||
|
@@ -27,39 +29,39 @@ | |
"Operating System :: OS Independent", | ||
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)", | ||
], | ||
keywords='Python Plone CMS', | ||
author='Peter Holzer', | ||
author_email='[email protected]', | ||
url='https://github.com/collective/bda.plone.wallee', | ||
keywords="Python Plone CMS", | ||
author="Peter Holzer", | ||
author_email="[email protected]", | ||
url="https://github.com/collective/bda.plone.wallee", | ||
project_urls={ | ||
'PyPI': 'https://pypi.python.org/pypi/bda.plone.wallee', | ||
'Source': 'https://github.com/collective/bda.plone.wallee', | ||
'Tracker': 'https://github.com/collective/bda.plone.wallee/issues', | ||
"PyPI": "https://pypi.python.org/pypi/bda.plone.wallee", | ||
"Source": "https://github.com/collective/bda.plone.wallee", | ||
"Tracker": "https://github.com/collective/bda.plone.wallee/issues", | ||
# 'Documentation': 'https://bda.plone.wallee.readthedocs.io/en/latest/', | ||
}, | ||
license='GPL version 2', | ||
packages=find_packages('src', exclude=['ez_setup']), | ||
namespace_packages=['bda', 'bda.plone'], | ||
package_dir={'': 'src'}, | ||
license="GPL version 2", | ||
packages=find_packages("src", exclude=["ez_setup"]), | ||
namespace_packages=["bda", "bda.plone"], | ||
package_dir={"": "src"}, | ||
include_package_data=True, | ||
zip_safe=False, | ||
python_requires=">=3.7", | ||
install_requires=[ | ||
'setuptools', | ||
"setuptools", | ||
# -*- Extra requirements: -*- | ||
'z3c.jbot', | ||
'plone.api>=1.8.4', | ||
'plone.app.dexterity', | ||
"z3c.jbot", | ||
"plone.api>=1.8.4", | ||
"plone.app.dexterity", | ||
], | ||
extras_require={ | ||
'test': [ | ||
'plone.app.testing', | ||
"test": [ | ||
"plone.app.testing", | ||
# Plone KGS does not use this version, because it would break | ||
# Remove if your package shall be part of coredev. | ||
# plone_coredev tests as of 2016-04-01. | ||
'plone.testing>=5.0.0', | ||
'plone.app.contenttypes', | ||
'plone.app.robotframework[debug]', | ||
"plone.testing>=5.0.0", | ||
"plone.app.contenttypes", | ||
"plone.app.robotframework[debug]", | ||
], | ||
}, | ||
entry_points=""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.