~umang/indicator-stickynotes/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Umang Varma
  • Date: 2022-03-12 23:34:38 UTC
  • Revision ID: git-v1:5c567b9671f55f67086ff6aba645c3fed424813a
Bump version 0.5.9 -> 0.5.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python3
2
2
# -*- coding: utf-8 -*-
3
3
4
 
# Copyright © 2012 Umang Varma <umang.me@gmail.com>
 
4
# Copyright © 2012-2018 Umang Varma <umang.me@gmail.com>
5
5
6
6
# This file is part of indicator-stickynotes.
7
7
81
81
 
82
82
def main():
83
83
    # Default data files
84
 
    data_files = [('', ('COPYING', 'style.css', 'StickyNotes.glade')),
 
84
    data_files = [('', ('COPYING', 'style.css', 'StickyNotes.ui',
 
85
                    'style_global.css', 'GlobalDialogs.ui',
 
86
                    'SettingsCategory.ui')),
85
87
                ('/usr/share/applications', ('indicator-stickynotes.desktop',)),
86
88
                ('Icons', glob.glob("Icons/*.png"))]
87
89
    # Icon themes
93
95
            for dir, subdirs, files in os.walk("Icons/" + theme) if files])
94
96
 
95
97
    setup(name='indicator-stickynotes',
96
 
            version='0.2',
97
 
            description='Sticky Notes AppIndicator',
 
98
            version='0.5.10',
 
99
            description='Sticky Notes Indicator',
98
100
            author='Umang Varma',
99
101
            author_email='umang.me@gmail.com',
100
102
            url='https://www.launchpad.net/indicator-stickynotes/',
102
104
            scripts=['indicator-stickynotes.py',],
103
105
            data_files=data_files,
104
106
            cmdclass={'build': Build, 'install_data': InstallData,
105
 
                'build_po': BuildPo, 'clean':Clean})
 
107
                'build_po': BuildPo, 'clean':Clean},
 
108
            long_description="Write reminders on notes with Indicator "
 
109
                "Stickynotes")
106
110
 
107
111
if __name__ == "__main__":
108
112
    main()