Skip to content

Commit 85c1476

Browse files
committed
src/
1 parent 410de4c commit 85c1476

File tree

5 files changed

+4
-3
lines changed

5 files changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
from setuptools import setup
1+
import setuptools
22

33
with open("README.rst") as f:
44
long_description = f.read()
55

6-
setup(
6+
setuptools.setup(
77
name="pytest-twisted",
88
version="1.14.2",
99
description="A twisted plugin for pytest.",
@@ -12,7 +12,8 @@
1212
author="Ralf Schmitt, Kyle Altendorf, Victor Titor",
1313
author_email="sda@fstab.net",
1414
url="https://github.com/pytest-dev/pytest-twisted",
15-
py_modules=["pytest_twisted"],
15+
packages=setuptools.find_packages('src'),
16+
package_dir={'': 'src'},
1617
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*',
1718
install_requires=["greenlet", "pytest>=2.3", "decorator"],
1819
extras_require={
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)