Skip to content

Commit

Permalink
Update and cleanup setup.cfg
Browse files Browse the repository at this point in the history
- Update classifiers
- Update minimum python required
- Update package_data folders
- Remove hypothesis from tests dependencies
  • Loading branch information
itziakos committed May 10, 2024
1 parent 3b0c1ac commit d19dfb7
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ long_description_content_type = rst
license = BSD-3-Clause
license_files = file: LICENSE.txt
classifier =
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.11

[bdist_wheel]
universal = 1
Expand All @@ -39,12 +39,11 @@ packages =
okonomiyaki.utils
okonomiyaki.utils.test_data
okonomiyaki.utils.tests
python_requires = >=2.7
python_requires = >=3.6
install_requires =
attrs >= 16.1.0
jsonschema >= 2.5.1
zipfile2 >= 0.0.12
enum34; python_version=="2.7"
distro; sys_platform=="linux2"
distro; sys_platform=="linux"

Expand All @@ -56,26 +55,25 @@ okonomiyaki.repositories.tests =
okonomiyaki.utils.test_data =
*.runtime
*.runtime.invalid
eggs/osx_x86_64/*.egg
eggs/rh5_x86_64/*.egg
eggs/rh6_x86_64/*.egg
eggs/rh7_x86_64/*.egg
eggs/rh8_x86_64/*.egg
eggs/win_x86_64/*.egg
eggs/osx_arm64/cp311/*.egg
eggs/osx_x86_64/cp27/*.egg
eggs/osx_x86_64/cp38/*.egg
eggs/osx_x86_64/cp311/*.egg
eggs/rh5_x86_64/cp38/*.egg
eggs/rh6_x86_64/cp38/*.egg
eggs/rh5_x86_64/cp27/*.egg
eggs/rh6_x86_64/cp27/*.egg
eggs/rh7_x86_64/cp27/*.egg
eggs/rh7_x86_64/cp38/*.egg
eggs/rh8_x86_64/cp311/*.egg
eggs/rh8_arm64/cp311/*.egg
eggs/win_x86_64/cp27/*.egg
eggs/win_x86_64/cp38/*.egg
eggs/win_x86_64/cp311/*.egg
eggs/win_arm64/cp311/*.egg
wheels/*.whl

[options.extras_require]
test =
haas
hypothesis
parameterized
testfixtures
distro
Expand Down

0 comments on commit d19dfb7

Please sign in to comment.