39 lines
997 B
Diff
39 lines
997 B
Diff
--- c/setup.py 1970-01-01 08:00:00.000000000 +0800
|
|
+++ a/setup.py 2022-11-02 10:34:45.755934377 +0800
|
|
@@ -0,0 +1,35 @@
|
|
+#!/usr/bin/env python
|
|
+# setup.py generated by flit for tools that don't yet use PEP 517
|
|
+
|
|
+from distutils.core import setup
|
|
+
|
|
+packages = \
|
|
+['jeepney',
|
|
+ 'jeepney.io',
|
|
+ 'jeepney.io.tests',
|
|
+ 'jeepney.tests']
|
|
+
|
|
+package_data = \
|
|
+{'': ['*']}
|
|
+
|
|
+extras_require = \
|
|
+{'test': ['pytest',
|
|
+ 'pytest-trio',
|
|
+ 'pytest-asyncio >=0.17',
|
|
+ 'testpath',
|
|
+ 'trio',
|
|
+ 'async-timeout'],
|
|
+ 'trio': ['trio'],
|
|
+ "trio:python_version == '3.6'": ['async_generator']}
|
|
+
|
|
+setup(name='jeepney',
|
|
+ version='0.8.0',
|
|
+ description='Low-level, pure Python DBus protocol wrapper.',
|
|
+ author='Thomas Kluyver',
|
|
+ author_email='thomas@kluyver.me.uk',
|
|
+ url='https://gitlab.com/takluyver/jeepney',
|
|
+ packages=packages,
|
|
+ package_data=package_data,
|
|
+ extras_require=extras_require,
|
|
+ python_requires='>=3.7',
|
|
+ )
|