Skip to content

Commit

Permalink
twine allows me to get rid of fixup subcommand
Browse files Browse the repository at this point in the history
  • Loading branch information
schmir committed Jan 7, 2014
1 parent 4300791 commit bae7251
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
if not (sys.modules.get("setuptools")
or "develop" in sys.argv
or "upload" in sys.argv
or "fixup" in sys.argv
or "bdist_egg" in sys.argv
or "bdist_wheel" in sys.argv
or "test" in sys.argv):
Expand Down Expand Up @@ -82,19 +81,6 @@ def build_extensions(self):
_build_ext.build_extensions(self)


class fixup(Command):
user_options = []
description = "prevent duplicate uploads and upload for the wrong architecture"

def initialize_options(self):
pass

def finalize_options(self):
pass

def run(self):
del self.distribution.dist_files[:-1]

setup(
name="greenlet",
version='0.4.2',
Expand All @@ -107,7 +93,7 @@ def run(self):
platforms=['any'],
headers=headers,
ext_modules=ext_modules,
cmdclass=dict(build_ext=build_ext, fixup=fixup),
cmdclass=dict(build_ext=build_ext),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit bae7251

Please sign in to comment.