Skip to content

Commit

Permalink
Use setuptools, install printrun.spoolmanager
Browse files Browse the repository at this point in the history
printrun.spoolmanager was missing from packages, so let's use find_packages
from setuptools not to make this mistake again.
  • Loading branch information
hroncok committed Mar 3, 2018
1 parent 116fdda commit d18f9ba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
import sys
import os
from stat import S_IRUSR, S_IWUSR, S_IRGRP, S_IROTH
from distutils.core import setup
from setuptools import setup
from setuptools import find_packages
from distutils.command.install import install as _install
from distutils.command.install_data import install_data as _install_data
try:
Expand Down Expand Up @@ -165,7 +166,7 @@ def run(self):
url = "http://github.com/kliment/Printrun/",
license = "GPLv3",
data_files = data_files,
packages = ["printrun", "printrun.gl", "printrun.gl.libtatlin", "printrun.gui", "printrun.power", "printrun.plugins"],
packages = find_packages(),
scripts = ["pronsole.py", "pronterface.py", "plater.py", "printcore.py"],
cmdclass = cmdclass,
ext_modules = extensions,
Expand Down

0 comments on commit d18f9ba

Please sign in to comment.