|
@@ -1,5 +1,5 @@
|
1
|
1
|
import os
|
2
|
|
-from setuptools import setup
|
|
2
|
+from setuptools import setup, find_packages
|
3
|
3
|
|
4
|
4
|
|
5
|
5
|
# Utility function to read the README file.
|
|
@@ -18,7 +18,7 @@ setup(
|
18
|
18
|
license="MIT",
|
19
|
19
|
keywords="example documentation tutorial",
|
20
|
20
|
url="https://github.com/GoatCTF/GoatCTF/",
|
21
|
|
- packages=['goatctf'],
|
|
21
|
+ packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
|
22
|
22
|
long_description=read('README.md'),
|
23
|
23
|
classifiers=[
|
24
|
24
|
"Development Status :: 3 - Alpha",
|