Skip to content

Commit

Permalink
provide interface
Browse files Browse the repository at this point in the history
  • Loading branch information
orsinium committed Nov 13, 2019
1 parent 4e5fa9e commit e9b6bef
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions dephell_setuptools/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from ._cfg import CfgReader
from ._cmd import CommandReader
from ._constants import FIELDS
from ._manager import read_setup
from ._pkginfo import PkgInfoReader
from ._static import StaticReader


__all__ = [
'FIELDS',
'read_setup',

'CfgReader',
'CommandReader',
'PkgInfoReader',
'StaticReader',
]
2 changes: 1 addition & 1 deletion tests/test_cfg.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pathlib import Path

from dephell_setuptools._cfg import CfgReader
from dephell_setuptools import CfgReader


def test_cfg():
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cmd.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pathlib import Path

from dephell_setuptools._cmd import CommandReader
from dephell_setuptools import CommandReader


def test_cfg():
Expand Down
2 changes: 1 addition & 1 deletion tests/test_static.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pathlib import Path

from dephell_setuptools._static import StaticReader
from dephell_setuptools import StaticReader


def test_unpack_kwargs():
Expand Down

0 comments on commit e9b6bef

Please sign in to comment.