forked from civisanalytics/muffnn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 817 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 817 Bytes
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
import os
from setuptools import find_packages, setup
THIS_DIR = os.path.dirname(os.path.realpath(__file__))
__version__ = None
exec(open(os.path.join(THIS_DIR, "muffnn", "version.py")).read())
setup(
name='muffnn',
version=__version__,
author='Civis Analytics, Inc.',
author_email='opensource@civisanalytics.com',
packages=find_packages(),
url='https://github.com/civisanalytics/muffnn',
description=('Multilayer Feed-Forward Neural Network (MuFFNN) models with '
'TensorFlow and scikit-learn'),
long_description=open(os.path.join(THIS_DIR, 'README.md')).read(),
include_package_data=True,
license="BSD-3",
install_requires=['numpy',
'scipy',
'scikit-learn~=0.19',
'tensorflow~=1.3']
)