12 lines
453 B
Diff
12 lines
453 B
Diff
|
|
--- c/setup.py 1970-01-01 08:00:00.000000000 +0800
|
||
|
|
+++ a/setup.py 2023-03-07 09:36:37.599063820 +0800
|
||
|
|
@@ -0,0 +1,8 @@
|
||
|
|
+from setuptools import setup
|
||
|
|
+
|
||
|
|
+
|
||
|
|
+setup(
|
||
|
|
+ name = "testpath",
|
||
|
|
+ version = "0.6.0",
|
||
|
|
+ description = "Testpath is a collection of utilities for Python code working with files and commands. It contains functions to check things on the filesystem, and tools for mocking system commands and recording calls to those.",
|
||
|
|
+ )
|