Skip to content

Commit

Permalink
Merge pull request #2281 from locustio/fix-2279
Browse files Browse the repository at this point in the history
Fix setuptools deprecation warnings
  • Loading branch information
heyman committed Dec 23, 2022
2 parents 8506534 + d94b930 commit f36e614
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = locust
license_file = LICENSE
license_files = LICENSE
url = https://locust.io/
project_urls =
Documentation = https://docs.locust.io/
Expand Down Expand Up @@ -31,8 +31,7 @@ classifiers =
Topic :: System :: Distributed Computing

[options]
packages = find:
include_package_data = true
packages = find_namespace:
zip_safe = false
python_requires = >= 3.7
install_requires =
Expand All @@ -52,10 +51,17 @@ install_requires =
pywin32;platform_system=='Windows'

[options.packages.find]
include = locust*
exclude =
examples
tests

[options.package_data]
locust.static =
**/*
locust.templates =
**/*

[options.entry_points]
console_scripts =
locust = locust.main:main
Expand Down

0 comments on commit f36e614

Please sign in to comment.