-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpavement.py
More file actions
29 lines (24 loc) · 942 Bytes
/
pavement.py
File metadata and controls
29 lines (24 loc) · 942 Bytes
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
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='matplotlib-helpers',
version=version.getVersion(),
description='Helper functions, etc. for matplotlib',
keywords='',
author='Christian Fobel',
author_email='christian@fobel.net',
url='https://github.com/wheeler-microfluidics/matplotlib-helpers',
license='GPL',
packages=['matplotlib_helpers'],
install_requires=['matplotlib', 'pandas', 'scikit-learn', 'scipy'],
# 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