forked from PyQwt/PyQwt5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 965 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
25
26
27
28
29
30
31
32
#!/usr/bin/env python
from distutils.core import setup
import time
name = 'PyQwt'
version = '5.2.1'
#version = '%04d%02d%02d' % (time.localtime()[:3])
long_description = """
PyQwt is a set of Python bindings for the Qwt C++ class library
which extends the Qt framework with widgets for scientific,
engineering, and scientific applications. It provides a widget
to plot data points in two dimensions and various widgets to
display and control bounded or unbounded floating point values.
"""
setup(
name = name,
version = version,
description = "Python bindings for the Qwt library",
url = "http://pyqwt.sourceforge.net",
author = "Gerard Vermeulen",
author_email = "[email protected]",
license = "GPL",
long_description = long_description,
platforms = "Unix, Windows, Mac OS X",
)
# Local Variables: ***
# mode: python ***
# End: ***