|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.2"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "statsd" |
| 7 | +version = "3.3.0" |
| 8 | +authors = [{name = "James Socol", email = "james@mozilla.com"}] |
| 9 | +license = {text = "MIT"} |
| 10 | +description = "A simple statsd client." |
| 11 | +readme = "README.rst" |
| 12 | +classifiers = [ |
| 13 | + "Development Status :: 5 - Production/Stable", |
| 14 | + "Environment :: Web Environment", |
| 15 | + "Intended Audience :: Developers", |
| 16 | + "License :: OSI Approved :: MIT License", |
| 17 | + "Operating System :: OS Independent", |
| 18 | + "Programming Language :: Python", |
| 19 | + "Programming Language :: Python :: 2", |
| 20 | + "Programming Language :: Python :: 2.7", |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "Programming Language :: Python :: 3.5", |
| 23 | + "Programming Language :: Python :: 3.6", |
| 24 | + "Programming Language :: Python :: 3.7", |
| 25 | + "Programming Language :: Python :: 3.8", |
| 26 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 27 | +] |
| 28 | +urls = {Homepage = "https://github.com/jsocol/pystatsd"} |
| 29 | + |
| 30 | +[tool.distutils.bdist_wheel] |
| 31 | +universal = 1 |
| 32 | + |
| 33 | +[tool.setuptools] |
| 34 | +include-package-data = true |
| 35 | + |
| 36 | +[tool.setuptools.packages] |
| 37 | +find = {namespaces = false} |
0 commit comments