-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (21 loc) · 960 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
from distutils.core import setup
setup(
name="interval3",
version="2.0.0",
description="Interval and IntervalSet Data Types",
long_description= """
Unlike the built-in sets, IntervalSets contain sets of Interval objects,
which describe an interval of continuous values. These IntervalSets can
be used in pretty much the same ways as set objects.
interval3 is a fork of the original interval module by Jacob Page.""",
author="Josh Watson",
py_modules=["interval3"],
license="LGPL",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Mathematics"])