Skip to content

Commit a65140a

Browse files
updated setup.py
1 parent a9dc190 commit a65140a

1 file changed

Lines changed: 3 additions & 13 deletions

File tree

setup.py

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22

3-
from setuptools import setup
3+
from setuptools import setup, find_packages
44

55
# read the contents of your README file
66
from os import path
@@ -41,18 +41,8 @@
4141
"Topic :: Software Development :: Interpreters",
4242
"Topic :: Software Development :: Libraries :: Python Modules",
4343
],
44-
packages=[
45-
"sifter",
46-
"sifter.commands",
47-
"sifter.comparators",
48-
"sifter.extensions",
49-
"sifter.grammar",
50-
"sifter.t",
51-
"sifter.tests",
52-
"sifter.validators",
53-
],
44+
packages=find_packages(exclude=("tests",)),
5445
package_data={
55-
"sifter": ['py.typed'],
56-
"sifter.t": ["*.in", "*.out", "*.msg", "*.rules"],
46+
"sifter": ['py.typed']
5747
},
5848
)

0 commit comments

Comments
 (0)