-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 975 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (29 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[build-system]
requires = ["setuptools>=44", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "corrupy"
version = "0.1.1"
authors = [
{ name = "CensoredUsername", email = "cens.username@gmail.com" },
]
description = "A library for analysing python pickles safely"
readme = "README.md"
keywords = ["pickle", "security"]
license = "WTFPL"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=2.7"
[project.urls]
Homepage = "https://github.com/CensoredUsername/corrupy"
Issues = "https://github.com/CensoredUsername/corrupy/issues"
Documentation = "https://corrupy.readthedocs.io/en/latest/"