forked from bitly/data_hacks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 850 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
23
24
#!/usr/bin/env python
from distutils.core import setup
version = "0.2"
setup(name='data_hacks',
version=version,
description='Command line utilities for data analysis',
author='Jehiah Czebotar',
author_email='[email protected]',
url='http://github.com/bitly/data_analysis',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Intended Audience :: System Administrators',
'Topic :: Terminals',
],
download_url="http://github.com/downloads/bitly/data_hacks/data_hacks-%s.tar.gz" % version,
scripts = ['data_hacks/histogram.py',
'data_hacks/ninety_five_percent.py',
'data_hacks/run_for.py',
'data_hacks/bar_chart.py',
'data_hacks/sample.py']
)