-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1013 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
"""
Elementwise provides convenient proxy objects which build operation chains
generatively. create chain on an iterable which transforms
operator behavior, function and methods into vectorized versions which operate
on all members of the iterable.
"""
from distutils.core import setup
setup(
name="constraints",
packages=["constraints"],
author="Nathan Rice",
author_email="[email protected]",
version="0.120126",
license="BSD 2 clause",
include_package_data=True,
zip_safe=False,
install_requires=["decorator"],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)