Actually include some packages

This commit is contained in:
Sarah 2021-10-17 12:57:12 +02:00
parent 208f69a202
commit 9bfc30460e
No known key found for this signature in database
GPG key ID: 708F7ACE058F0186

View file

@ -1,6 +1,6 @@
#setup.py: #setup.py:
import os import os
from distutils.core import setup from setuptools import setup, find_packages
DIR = os.path.dirname(__file__) DIR = os.path.dirname(__file__)
@ -12,6 +12,7 @@ with open(os.path.join(DIR, "VERSION")) as f:
setup( setup(
name="peerix", name="peerix",
packages=find_packages(),
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [
'peerix = peerix.__main__:run' 'peerix = peerix.__main__:run'