forked from fmder/pynolh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 868 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
#!/usr/bin/env python
from distutils.core import setup
setup (name="pynolh",
version="0.1",
author="Francois-Michel De Rainville",
author_email="[email protected]",
license="LICENSE.txt",
description="Nearly Orthogonal Latin Hypercube Generator",
long_description=open("README.md").read(),
url='https://github.com/fmder/pynolh',
download_url="https://github.com/fmder/pynolh/downloads",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Topic :: Scientific/Engineering',
],
install_requires=["numpy",],
py_modules=["pynolh"],
)