-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
33 lines (29 loc) · 1.01 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
import os
from setuptools import find_packages, setup
THIS_DIR = os.path.dirname(os.path.realpath(__file__))
_VERSION = '2.3.2'
CLASSIFIERS = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
]
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.rst')).read(),
include_package_data=True,
license="BSD-3",
install_requires=['numpy',
'scipy',
'scikit-learn>=0.20.0,<0.23.0',
'tensorflow>=1.15.4,<2'],
classifiers=CLASSIFIERS
)