-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 853 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
#-------------------------------------------------------------------------------
# Copyright (c) 2015 Christian Garbers.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Simplified BSD License
# which accompanies this distribution
#
# Contributors:
# Christian Garbers - initial API and implementation
#-------------------------------------------------------------------------------
#!/usr/bin/env python
from distutils.core import setup
setup(name='ToLsTOy',
version='0.9',
description='Twenty Led Tower cOntrol',
author='Christian Garbers',
author_email='[email protected]',
packages=['ToLsTOy'],
package_dir={'ToLsTOy': 'ToLsTOy'},
package_data={'ToLsTOy': ['PCI-DASK.dll', 'PCI-DASK.lib', 'ColSymb.gif']}, requires=['mock']
)