Skip to content

Commit

Permalink
Small cleanups of setup.py (#102)
Browse files Browse the repository at this point in the history
* Limit number of imports in setup.py.

* Make setup.py PEP8 compliant.
  • Loading branch information
Freso authored and JoeLametta committed Jan 6, 2017
1 parent b0bb561 commit 5e3b10e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions setup.py
@@ -1,18 +1,16 @@
from setuptools import setup, find_packages
from os import system, makedirs, environ

import morituri
from morituri import __version__ as morituri_version

setup(
name="whipper",
version=morituri.__version__,
version=morituri_version,
description="a secure cd ripper preferring accuracy over speed",
author=['Thomas Vander Stichele', 'Joe Lametta', 'Samantha Baldwin'],
maintainer=['Joe Lametta', 'Samantha Baldwin'],
url='https://github.com/JoeLametta/whipper',
license='GPL3',
packages=find_packages(),
entry_points = {
entry_points={
'console_scripts': [
'whipper = morituri.command.main:main'
]
Expand Down

0 comments on commit 5e3b10e

Please sign in to comment.