-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (34 loc) · 1.15 KB
/
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
33
34
35
36
37
38
39
40
41
'''
Author: Ghifari Adam Faza <[email protected]>
This package is distributed under New BSD license.
'''
from setuptools import setup
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
LONG_DESCRIPTION= """
Sobol sequences are an example of quasi-random low-discrepancy sequences. They were first introduced by the Russian mathematician Ilya M. Sobol.
This Python function was translated from the original c++ program by Frances Kuo and Stephen Joe https://web.maths.unsw.edu.au/~fkuo/sobol/
"""
metadata = dict(
name='sobolsampling',
version='0.1.3',
description='Sobol Sampling Package',
long_description=LONG_DESCRIPTION,
author='Ghifari Adam F',
author_email='[email protected]',
license='BSD-3',
packages=[
'sobolsampling'
],
install_requires=[
'numpy'
],
python_requires='>=3.6',
zip_safe=False,
include_package_data=True,
url = 'https://github.com/fazaghifari/SobolSampling', # use the URL to the github repo
download_url = 'https://github.com/fazaghifari/SobolSampling/releases',
)
setup(**metadata)