Small cleanups of setup.py (#102)
* Limit number of imports in setup.py. * Make setup.py PEP8 compliant.
This commit is contained in:
committed by
JoeLametta
parent
b0bb561d5e
commit
5e3b10eaae
8
setup.py
8
setup.py
@@ -1,18 +1,16 @@
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
from os import system, makedirs, environ
|
from morituri import __version__ as morituri_version
|
||||||
|
|
||||||
import morituri
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="whipper",
|
name="whipper",
|
||||||
version=morituri.__version__,
|
version=morituri_version,
|
||||||
description="a secure cd ripper preferring accuracy over speed",
|
description="a secure cd ripper preferring accuracy over speed",
|
||||||
author=['Thomas Vander Stichele', 'Joe Lametta', 'Samantha Baldwin'],
|
author=['Thomas Vander Stichele', 'Joe Lametta', 'Samantha Baldwin'],
|
||||||
maintainer=['Joe Lametta', 'Samantha Baldwin'],
|
maintainer=['Joe Lametta', 'Samantha Baldwin'],
|
||||||
url='https://github.com/JoeLametta/whipper',
|
url='https://github.com/JoeLametta/whipper',
|
||||||
license='GPL3',
|
license='GPL3',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
entry_points = {
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
'whipper = morituri.command.main:main'
|
'whipper = morituri.command.main:main'
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user