Mercurial > hg > numerics
annotate setup.py @ 125:d255058333b2
putzing
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 16 Mar 2015 19:31:49 -0700 |
parents | 4e0c6887604e |
children | 63bf582841a3 |
rev | line source |
---|---|
103
067aa27050a3
limping along towards bar charts
Jeff Hammel <k0scist@gmail.com>
parents:
101
diff
changeset
|
1 # -*- coding: utf-8 -*-""" |
067aa27050a3
limping along towards bar charts
Jeff Hammel <k0scist@gmail.com>
parents:
101
diff
changeset
|
2 |
0 | 3 """ |
45
ef915968d104
put this in the parser so that i can use this in convert
Jeff Hammel <k0scist@gmail.com>
parents:
41
diff
changeset
|
4 setup packaging script for numerics python package |
0 | 5 """ |
6 | |
7 import os | |
8 | |
9 version = "0.0" | |
2 | 10 dependencies = ['numpy', |
11 'pandas', | |
12 'matplotlib', | |
120
4e0c6887604e
cleanup and note dependencies
Jeff Hammel <k0scist@gmail.com>
parents:
116
diff
changeset
|
13 'bokeh>=0.8.1', |
4e0c6887604e
cleanup and note dependencies
Jeff Hammel <k0scist@gmail.com>
parents:
116
diff
changeset
|
14 'python-dateutil', |
4e0c6887604e
cleanup and note dependencies
Jeff Hammel <k0scist@gmail.com>
parents:
116
diff
changeset
|
15 'which'] |
0 | 16 |
17 # allow use of setuptools/distribute or distutils | |
18 kw = {} | |
19 try: | |
20 from setuptools import setup | |
21 kw['entry_points'] = """ | |
11 | 22 [console_scripts] |
103
067aa27050a3
limping along towards bar charts
Jeff Hammel <k0scist@gmail.com>
parents:
101
diff
changeset
|
23 bar-chart = numerics.bar:main |
62 | 24 cat-columns = numerics.cat_columns:main |
95 | 25 display-fraction = numerics.text_display:main |
63
0df8bcb6d521
stubbing: unicode histograms
Jeff Hammel <k0scist@gmail.com>
parents:
62
diff
changeset
|
26 histogram = numerics.histogram:main |
15 | 27 interpolate = numerics.interpolation:main |
61 | 28 manipulate = numerics.manipulate:main |
101
b7d4b7f84883
simple script to compute means
Jeff Hammel <k0scist@gmail.com>
parents:
95
diff
changeset
|
29 mean = numerics.mean:main |
17 | 30 plot = numerics.plot:main |
31 read-csv = numerics.read:main | |
29 | 32 smooth = numerics.smooth:main |
41 | 33 sum = numerics.sum:main |
27 | 34 types = numerics.convert:main |
0 | 35 """ |
54
bbfe25d23a9f
notes to self re fitting Skinny Puppy reference
Jeff Hammel <k0scist@gmail.com>
parents:
45
diff
changeset
|
36 # TODO: |
66
7dd1b18c9f78
minor cleanup and better error
Jeff Hammel <k0scist@gmail.com>
parents:
63
diff
changeset
|
37 # cleanse = numerics.clean:main # cleans up outliers |
101
b7d4b7f84883
simple script to compute means
Jeff Hammel <k0scist@gmail.com>
parents:
95
diff
changeset
|
38 # fold = numerics.fold:main # fold data through functions (reduce) |
0 | 39 kw['install_requires'] = dependencies |
40 except ImportError: | |
41 from distutils.core import setup | |
42 kw['requires'] = dependencies | |
43 | |
44 try: | |
45 here = os.path.dirname(os.path.abspath(__file__)) | |
46 description = file(os.path.join(here, 'README.txt')).read() | |
47 except IOError: | |
48 description = '' | |
49 | |
50 | |
3 | 51 setup(name='numerics', |
0 | 52 version=version, |
3 | 53 description="personal experiments in numerics + plotting", |
0 | 54 long_description=description, |
55 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
56 author='Jeff Hammel', | |
57 author_email='k0scist@gmail.com', | |
3 | 58 url='http://k0s.org/hg/numerics', |
0 | 59 license='', |
3 | 60 packages=['numerics'], |
0 | 61 include_package_data=True, |
62 zip_safe=False, | |
63 **kw | |
64 ) |