forked from IBM/UQ360
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 795 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
from setuptools import setup, find_packages
import re
# parameter variables
install_requires = []
dependency_links = []
package_data = {}
# determine requirements
with open('requirements.txt') as f:
requirements = f.read()
for line in re.split('\n', requirements):
if line and line[0] != '#' and '# test' not in line:
install_requires.append(line)
setup(
name='uq360',
version='0.2',
url='https://github.com/IBM/UQ360',
license='Apache License 2.0',
author='uq360 developers',
author_email='[email protected]',
packages=find_packages(),
description='Uncertainty Quantification 360',
long_description=open('README.md', 'r', encoding='utf-8').read(),
long_description_content_type='text/markdown',
install_requires=install_requires
)