-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
executable file
·51 lines (48 loc) · 1.55 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
42
43
44
45
46
47
48
49
50
51
###############################################################################
# Copyright (c) 2018, Lawrence Livermore National Security, LLC.
#
# Produced at the Lawrence Livermore National Laboratory
#
# Written by K. Humbird (humbird1@llnl.gov), L. Peterson (peterson76@llnl.gov).
#
# LLNL-CODE-754815
#
# All rights reserved.
#
# This file is part of DJINN.
#
# For details, see github.com/LLNL/djinn.
#
# For details about use and distribution, please read DJINN/LICENSE.
###############################################################################
from setuptools import setup
from setuptools import find_packages
from os import listdir
def readme():
with open('README.md') as f:
return f.read()
setup(name='djinnml',
version='1.0',
description='Deep Jointly-Informed Neural Networks',
long_description=readme(),
classifiers=[
'Programming Language :: Python :: 3.7',
],
keywords='regression neural networks tensorflow',
url='https://github.com/LLNL/djinn',
author='Kelli Humbird',
author_email='humbird1@llnl.gov',
license='LLNL',
packages=find_packages(),
install_requires=[
'tensorflow>=2.0.0',
'scipy',
'scikit-learn>=0.21',
],
test_suite='nose.collector',
tests_require=['nose', 'nose-cover3'],
#entry_points={ 'console_scripts': find_scripts(),
#},
#scripts=bin_scripts(),
include_package_data=True,
zip_safe=False)