19 lines
552 B
Diff
19 lines
552 B
Diff
|
|
--- c/setup.py 1970-01-01 08:00:00.000000000 +0800
|
||
|
|
+++ a/setup.py 2022-10-28 14:58:41.729391467 +0800
|
||
|
|
@@ -0,0 +1,15 @@
|
||
|
|
+#!/usr/bin/env python
|
||
|
|
+# setup.py generated by flit for tools that don't yet use PEP 517
|
||
|
|
+
|
||
|
|
+from distutils.core import setup
|
||
|
|
+
|
||
|
|
+
|
||
|
|
+setup(name='threadpoolctl',
|
||
|
|
+ version='3.1.0',
|
||
|
|
+ description='threadpoolctl',
|
||
|
|
+ author='Thomas Moreau',
|
||
|
|
+ author_email='thomas.moreau.2010@gmail.com',
|
||
|
|
+ url='https://github.com/joblib/threadpoolctl',
|
||
|
|
+ py_modules=['threadpoolctl'],
|
||
|
|
+ python_requires='>=3.6',
|
||
|
|
+ )
|