Skip to content

Commit eda702f

Browse files
authored
Merge pull request #171 from cclauss/pyproject.toml
PEP 621: Migrate to pyproject.toml
2 parents c72ae60 + b9c3b06 commit eda702f

File tree

4 files changed

+38
-34
lines changed

4 files changed

+38
-34
lines changed

pyproject.toml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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}

setup.cfg

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 32 deletions
This file was deleted.

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tox]
22
envlist = py37,py38,py39,py310,py311,pypy3
3+
isolated_build = True
34

45
[testenv]
56
deps=

0 commit comments

Comments
 (0)