Skip to content

Commit 0d6c3d9

Browse files
authored
Moving to pyproject.toml (#27)
Moving to pyproject.toml
1 parent 71c6920 commit 0d6c3d9

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

pyproject.toml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"
4+
5+
6+
[project]
7+
name = "JSON-log-formatter"
8+
description = 'JSON log formatter'
9+
authors = [
10+
{name = "Marsel Mavletkulov", email = "[email protected]"},
11+
]
12+
readme = "README.rst"
13+
version = '0.5.1'
14+
license = {text = "MIT"}
15+
classifiers=[
16+
'License :: OSI Approved :: MIT License',
17+
'Intended Audience :: Developers',
18+
'Operating System :: OS Independent',
19+
'Programming Language :: Python',
20+
'Programming Language :: Python :: 2',
21+
'Programming Language :: Python :: 3',
22+
'Topic :: Software Development :: Libraries :: Python Modules'
23+
]
24+
25+
[tool.setuptools]
26+
packages = ["json_log_formatter"]

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
'Intended Audience :: Developers',
1616
'Operating System :: OS Independent',
1717
'Programming Language :: Python',
18+
'Programming Language :: Python :: 2',
1819
'Programming Language :: Python :: 3',
1920
'Topic :: Software Development :: Libraries :: Python Modules'
2021
],
2122
)
23+

0 commit comments

Comments
 (0)