Skip to content

Commit d045b90

Browse files
authored
Use pyproject.toml instead of setup.py (#11)
1 parent ea7df49 commit d045b90

File tree

3 files changed

+41
-18
lines changed

3 files changed

+41
-18
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*.pyc
33
/build
44
/dist
5+
/.coverage

pyproject.toml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
[project]
2+
name = "myloginpath"
3+
version = "0.0.4rc1"
4+
description="MySQL login path file reader"
5+
6+
readme = "README.md"
7+
requires-python = ">=3.8"
8+
authors = [
9+
{name = "Inada Naoki", email = "[email protected]"}
10+
]
11+
license = {file = "LICENSE.txt"}
12+
keywords = ["MySQL"]
13+
classifiers = [
14+
"Development Status :: 5 - Production/Stable",
15+
"Environment :: Other Environment",
16+
"License :: OSI Approved :: MIT License",
17+
"Operating System :: OS Independent",
18+
"Programming Language :: Python",
19+
"Programming Language :: Python :: 3",
20+
"Programming Language :: Python :: 3.8",
21+
"Programming Language :: Python :: 3.9",
22+
"Programming Language :: Python :: 3.10",
23+
"Programming Language :: Python :: 3.11",
24+
"Topic :: Database",
25+
]
26+
dependencies = [
27+
"cryptography",
28+
]
29+
30+
[project.urls]
31+
Project = "https://github.com/PyMySQL/myloginpath/"
32+
33+
[build-system]
34+
requires = ["setuptools"]
35+
build-backend = "setuptools.build_meta"
36+
37+
[tool.setuptools]
38+
py-modules = [
39+
"myloginpath",
40+
]

setup.py

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

0 commit comments

Comments
 (0)