File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
include README.rst LICENSE* CODE_OF_CONDUCT* CONTRIBUTING*
2
2
include .coveragerc
3
3
include ci/test-requirements.txt
4
- recursive-include tests *.pem
4
+ recursive-include tests *.py
5
+ recursive-exclude tests *.pyc
6
+ prune tests/.pytest_cache
5
7
recursive-include docs *
6
8
prune docs/build
Original file line number Diff line number Diff line change 1
1
sphinx >= 1.7.0
2
2
sphinx_rtd_theme
3
3
sphinxcontrib-trio
4
+ trio >= 0.15.0
5
+ outcome
6
+ attrs
Original file line number Diff line number Diff line change 1
- from setuptools import setup , find_packages
1
+ from setuptools import setup
2
2
import sys
3
3
4
4
exec (open ("trio_asyncio/_version.py" , encoding = "utf-8" ).read ())
54
54
55
55
install_requires = [
56
56
"trio >= 0.15.0" ,
57
+ "attrs" ,
57
58
"outcome" ,
58
59
]
59
60
if sys .version_info < (3 , 7 ):
69
70
author_email = "matthias@urlichs.de" ,
70
71
url = "https://github.com/python-trio/trio-asyncio" ,
71
72
license = "MIT -or- Apache License 2.0" ,
72
- packages = find_packages () ,
73
+ packages = [ "trio_asyncio" ] ,
73
74
install_requires = install_requires ,
74
75
# This means, just install *everything* you see under trio/, even if it
75
76
# doesn't look like a source file, so long as it appears in MANIFEST.in:
You can’t perform that action at this time.
0 commit comments