forked from wheeler-microfluidics/avr_helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpavement.py
31 lines (25 loc) · 978 Bytes
/
pavement.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
import sys
from pprint import pprint
from paver.easy import task, needs, path
from paver.setuputils import setup, find_package_data
import version
avr_helpers_files = find_package_data(package='avr_helpers',
where='avr_helpers',
only_in_packages=False)
pprint(avr_helpers_files)
setup(name='avr_helpers',
version=version.getVersion(),
description='Minimal tool-set for flashing bit-streams to AVR '
'micro-controllers.',
author='Christian Fobel',
author_email='christian@fobel.net',
url='http://github.com/wheeler-microfluidics/avr_helpers.git',
license='GPLv2',
packages=['avr_helpers'],
package_data=avr_helpers_files,
install_requires=['path_helpers', 'serial_device'])
@task
@needs('generate_setup', 'minilib', 'setuptools.command.sdist')
def sdist():
"""Overrides sdist to make sure that our setup.py is generated."""
pass