Skip to content

Commit

Permalink
Prettify setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FRiMN committed Feb 2, 2019
1 parent 0077f86 commit 84cf433
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,33 @@
from distutils.core import setup
from rackman import __version__

setup(name = 'Rackman',
version = __version__,
description = 'A tool measure distances on the screen',
keywords = 'tool, application, gtk, measuring, screen, monitor, mm, in, px, pt',
author = 'Nik Volkov',
author_email = '[email protected]',
url = 'https://github.com/FRiMN/Rackman',
py_modules = [
'rackman',
],
license = 'mit',
data_files = [
('/usr/share/icons/hicolor/scalable/apps/', ['rackman.svg']),
('/usr/share/applications', ['rackman.desktop']),
('/usr/share/rackman', ['rackman.conf']),
('/usr/share/locale/ru/LC_MESSAGES', ['./locale/ru/LC_MESSAGES/rackman.mo']),
('/usr/share/locale/en/LC_MESSAGES', ['./locale/en/LC_MESSAGES/rackman.mo']),
('/usr/share/doc/rackman/html/ru', ['./doc/html/ru/index.html']),
('/usr/share/man/ru/man1', ['./doc/man/ru/rackman.1.gz']),
],
obsoletes = [
'Rackman',
],
requires = [
'PyGTK (>=2.0)',
],
scripts = [
'rackman'
],
)
setup(name='Rackman',
version=__version__,
description='A tool measure distances on the screen',
keywords='tool, application, gtk, measuring, screen, monitor, mm, in, px, pt',
author='Nik Volkov',
author_email='[email protected]',
url='https://github.com/FRiMN/Rackman',
py_modules=[
'rackman',
],
license='mit',
data_files=[
('/usr/share/icons/hicolor/scalable/apps/', ['rackman.svg']),
('/usr/share/applications', ['rackman.desktop']),
('/usr/share/rackman', ['rackman.conf']),
('/usr/share/locale/ru/LC_MESSAGES', ['./locale/ru/LC_MESSAGES/rackman.mo']),
('/usr/share/locale/en/LC_MESSAGES', ['./locale/en/LC_MESSAGES/rackman.mo']),
('/usr/share/doc/rackman/html/ru', ['./doc/html/ru/index.html']),
('/usr/share/man/ru/man1', ['./doc/man/ru/rackman.1.gz']),
],
obsoletes=[
'Rackman',
],
requires=[
'PyGTK (>=2.0)',
],
scripts=[
'rackman'
],
)

0 comments on commit 84cf433

Please sign in to comment.