Actually include some packages
This commit is contained in:
parent
208f69a202
commit
9bfc30460e
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -1,6 +1,6 @@
|
|||
#setup.py:
|
||||
import os
|
||||
from distutils.core import setup
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
DIR = os.path.dirname(__file__)
|
||||
|
||||
|
@ -12,6 +12,7 @@ with open(os.path.join(DIR, "VERSION")) as f:
|
|||
|
||||
setup(
|
||||
name="peerix",
|
||||
packages=find_packages(),
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
'peerix = peerix.__main__:run'
|
||||
|
|
Loading…
Reference in a new issue