-
Notifications
You must be signed in to change notification settings - Fork 0
/
pavement.py
30 lines (25 loc) · 953 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
import sys
from paver.easy import task, needs, path, sh, cmdopts, options
from paver.setuputils import setup, install_distutils_tasks
from distutils.extension import Extension
from distutils.dep_util import newer
sys.path.insert(0, path('.').abspath())
import version
setup(name='dstat_interface',
version=version.getVersion(),
description='Interface software for DStat potentiostat.',
keywords='',
author='Michael D. M Dryden',
author_email='[email protected]',
url='http://microfluidics.utoronto.ca/dstat',
license='GPLv3',
packages=['dstat_interface', ],
install_requires=['matplotlib', 'numpy', 'pyserial',
'pyzmq'],
# Install data listed in `MANIFEST.in`
include_package_data=True)
@task
@needs('generate_setup', 'minilib', 'setuptools.command.sdist')
def sdist():
"""Overrides sdist to make sure that our setup.py is generated."""
pass