22This module contains the tool of collective.recipe.omelette
33"""
44
5- from setuptools import find_packages
65from setuptools import setup
76
87import os
@@ -28,7 +27,7 @@ def read(*rnames):
2827 "zc.buildout.uninstall" : ["default = %s" % uninstall_entry_point ],
2928}
3029
31- install_requires = ["setuptools" , " zc.buildout" , "zc.recipe.egg" ]
30+ install_requires = ["zc.buildout" , "zc.recipe.egg" ]
3231tests_require = ["zope.testing" , "zc.buildout[test]" , "zc.recipe.egg" ]
3332
3433setup (
@@ -43,7 +42,6 @@ def read(*rnames):
4342 "Topic :: Software Development :: Build Tools" ,
4443 "Topic :: Software Development :: Libraries :: Python Modules" ,
4544 "License :: OSI Approved :: GNU General Public License (GPL)" ,
46- "Programming Language :: Python :: 3.9" ,
4745 "Programming Language :: Python :: 3.10" ,
4846 "Programming Language :: Python :: 3.11" ,
4947 "Programming Language :: Python :: 3.12" ,
@@ -54,13 +52,10 @@ def read(*rnames):
54525553 url = "https://github.com/collective/collective.recipe.omelette" ,
5654 license = "GPL" ,
57- packages = find_packages ("src" ),
58- package_dir = {"" : "src" },
59- namespace_packages = ["collective" , "collective.recipe" ],
6055 include_package_data = True ,
6156 zip_safe = False ,
6257 install_requires = install_requires ,
63- python_requires = ">=3.9 " ,
58+ python_requires = ">=3.10 " ,
6459 extras_require = dict (
6560 test = tests_require ,
6661 # Originally we only had 'tests' as entrypoint,
0 commit comments