-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (45 loc) · 1.67 KB
/
setup.py
File metadata and controls
51 lines (45 loc) · 1.67 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup # , find_packages
import os
import clplot
here = os.path.abspath(os.path.dirname(__file__))
long_description = """
clplot - command line plotting utility
This utility is a command line front end to the matplotlib plotting
module. This utility handles reading the data from file and determining
the structure of the data. The utility attempts to make reasonable
plot output using a collection of assumptions and inferences from the
data. In many cases, reasonable output can be produced by the utility
with the user providing nothing more than file names.
when install with setuptools (or variant), an executable 'plot' is added
to the user's path.
"""
setup(
name='commandlineplot',
version=clplot.__version__,
url='http://github.com/JohnFNovak/clplot/',
license='Public Domain',
author='John F Novak',
install_requires=['Matplotlib>1.0',
'numpy>1.0'],
author_email='john.franc.novak@gmail.com',
description='a command line plotting utility written in python',
long_description=long_description,
packages=['clplot'],
include_package_data=True,
platforms='any',
entry_points={
'console_scripts': [
'plot = clplot.clplot:main',
]
},
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: Public Domain',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Visualization'
]
)