Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ luastyle.egg-info
luastyle/__pycache__
luastyle/tests/__pycache__/
*.cpp
*.html
*.so
MANIFEST
dist/
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import sys
from setuptools import setup, Extension
from distutils.command.sdist import sdist
from distutils.command.build_ext import build_ext
import distutils.cmd
from setuptools import setup, Extension, Command
from setuptools.command.sdist import sdist
from setuptools.command.build_ext import build_ext
import luastyle


Expand Down Expand Up @@ -30,7 +29,7 @@ def run(self):
build_ext.run(self)


class CythonizeCommand(distutils.cmd.Command):
class CythonizeCommand(Command):
description = 'Cythonize cython files'
user_options = []

Expand Down
Loading