mirror of
https://github.com/Without-Proper-Instructions/GoatCTF
synced 2025-10-08 07:40:46 +00:00
Autodetect packages in setup.py
This commit is contained in:
parent
c6923d1e54
commit
1fcf436094
4
setup.py
4
setup.py
@ -1,5 +1,5 @@
|
||||
import os
|
||||
from setuptools import setup
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
# Utility function to read the README file.
|
||||
@ -18,7 +18,7 @@ setup(
|
||||
license="MIT",
|
||||
keywords="example documentation tutorial",
|
||||
url="https://github.com/GoatCTF/GoatCTF/",
|
||||
packages=['goatctf'],
|
||||
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
|
||||
long_description=read('README.md'),
|
||||
classifiers=[
|
||||
"Development Status :: 3 - Alpha",
|
||||
|
Loading…
x
Reference in New Issue
Block a user