-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 907 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
31
32
33
34
from distutils.core import setup
setup(
name='bosco',
version='0.2dev',
author='Gaudenz Steinlin',
author_email='gaudenz@durcheinandertal.ch',
packages=['bosco',
'bosco.test',
],
scripts=['bin/autoreader',
'bin/bosco',
'bin/import',
'bin/print',
'bin/ranking_viewer',
'bin/ranking_export',
'bin/solvexport',
'bin/speaker',
],
package_data={'bosco': ['templates/*.html',
'templates/*.tex',
]},
url='http://bosco.durcheinandertal.ch/',
license='LICENSE.txt',
description='Free orienteering framework',
long_description=open('README.txt').read(),
install_requires=[
'storm',
'wxPython',
'pyserial',
'reportlab',
'Mako',
],
)