forked from tito/rumps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 891 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
from distutils.core import setup
import rumps
setup(
name='rumps',
version=rumps.__version__,
description='Ridiculously Uncomplicated Mac os x Python Statusbar apps.',
author='Jared Suttles',
url='https://github.com/jaredks/rumps',
packages=['rumps'],
package_data={'': ['LICENSE']},
long_description=open('README.md').read() + '\n\n' + open('CHANGES').read(),
license='BSD License',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: MacOS X',
'Environment :: MacOS X :: Cocoa',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Objective C',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)