setup: Don't install tests.
This commit is contained in:
parent
f888b13c56
commit
a408c854d4
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from setuptools import setup
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='import2ledger',
|
||||
|
@ -14,6 +14,6 @@ setup(
|
|||
setup_requires=['pytest-runner'],
|
||||
tests_require=['pytest', 'PyYAML'],
|
||||
|
||||
packages=['import2ledger'],
|
||||
packages=find_packages(include=['import2ledger', 'import2ledger.*']),
|
||||
entry_points={},
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue