5403acefe8c2e2872ab3f884401115ab2419caf5
Marco Ricci Import initial project files

Marco Ricci authored 4 months ago

1) [build-system]
2) requires = ["hatchling"]
3) build-backend = "hatchling.build"
4) 
5) [project]
6) name = "derivepassphrase"
7) dynamic = ["version"]
8) description = "An almost faithful Python reimplementation of James Coglan's vault."
9) readme = "README.md"
10) requires-python = ">=3.11"
11) license = "MIT"
12) keywords = []
13) authors = [
14)   { name = "Marco Ricci", email = "m@the13thletter.info" },
15) ]
16) classifiers = [
17)   "Development Status :: 4 - Beta",
18)   "Environment :: Console",
19)   "Programming Language :: Python :: 3",
20)   "Programming Language :: Python :: 3 :: Only",
21)   "Programming Language :: Python :: 3.11",
22)   "Programming Language :: Python :: 3.12",
23)   "Programming Language :: Python :: Implementation :: CPython",
24)   "Programming Language :: Python :: Implementation :: PyPy",
25) ]
26) dependencies = [
27)   "click",
28) ]
29) 
30) [project.urls]
31) Documentation = "https://github.com/the-13th-letter/derivepassphrase#readme"
32) Issues = "https://github.com/the-13th-letter/derivepassphrase/issues"
33) Source = "https://github.com/the-13th-letter/derivepassphrase"
34) 
35) [project.scripts]
36) derivepassphrase = "derivepassphrase.cli:derivepassphrase"
37) 
38) [tool.mypy]
39) mypy_path = '$MYPY_CONFIG_FILE_DIR/src'
40) explicit_package_bases = true
41) implicit_reexport = false
42) sqlite_cache = true
43) 
44) [tool.pytest.ini_options]
45) addopts = '--doctest-modules'
46) pythonpath = ['src']
Marco Ricci Add unit tests, both new an...

Marco Ricci authored 3 months ago

47) testpaths = ['src', 'tests']