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 11include README.rst LICENSE* CODE_OF_CONDUCT* CONTRIBUTING*
22include .coveragerc
33include ci/test-requirements.txt
4- recursive-include tests *.pem
4+ recursive-include tests *.py
5+ recursive-exclude tests *.pyc
6+ prune tests/.pytest_cache
57recursive-include docs *
68prune docs/build
Original file line number Diff line number Diff line change 11sphinx >= 1.7.0
22sphinx_rtd_theme
33sphinxcontrib-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
22import sys
33
44exec (open ("trio_asyncio/_version.py" , encoding = "utf-8" ).read ())
5454
5555install_requires = [
5656 "trio >= 0.15.0" ,
57+ "attrs" ,
5758 "outcome" ,
5859]
5960if sys .version_info < (3 , 7 ):
6970 author_email = "matthias@urlichs.de" ,
7071 url = "https://github.com/python-trio/trio-asyncio" ,
7172 license = "MIT -or- Apache License 2.0" ,
72- packages = find_packages () ,
73+ packages = [ "trio_asyncio" ] ,
7374 install_requires = install_requires ,
7475 # This means, just install *everything* you see under trio/, even if it
7576 # 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