-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
executable file
·30 lines (24 loc) · 983 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
import sys
import os
from distutils.core import setup
#from distutils.core import Command
# class test(Command):
#"""Run only the tests concerning features of OTTemplate.
#"""
#description = "Automatically run the core test suite for OTTemplate."
# user_options = [] # distutils complains if this is not here.
# tests=['ottemplate/test/MyClass_test.py']
# def initialize_options(self): # distutils wants this
# pass
# def finalize_options(self): # this too
# pass
# def run(self):
# for test in self.tests:
#os.system(sys.executable +' '+ test)
setup(name='randomfields',
version='randomfields.__version__',
packages=['randomfields'],
url="https://github.com/dubourg/python-randomfields",
description=("A Python module that implements tools for the simulation and identification of random fields using \
the Karhunen-Loeve expansion representation.")
)