forked from mu-editor/mu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 930 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
27
28
29
30
from setuptools import setup
from mu import __version__
setup(
name='mu',
version=__version__,
description='A simple editor for kids, teachers and new programmers.',
author='Nicholas Tollervey',
author_email='[email protected]',
url='https://github.com/mu-editor/mu',
packages=['mu', 'mu.contrib', 'mu.resources'],
include_package_data=True,
zip_safe=False,
classifiers=[
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Education',
'Topic :: Education',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
"mu = mu.app:run",
],
},
data_files=[('/etc/udev/rules.d', ['conf/90-usb-microbit.rules', ]),
('/usr/share/pixmaps', ['conf/mu.png', ]),
('/usr/share/applications', ['conf/mu.desktop', ])],
)