-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (45 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
import os
from setuptools import setup, find_packages
def read(*paths):
"""
Build a file path from *paths* and return the contents.
"""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='nnrf',
version='0.9.1',
description='Neural Network with Random Forest Structure',
long_description=(read('README.md') + '\n\n'),
long_description_content_type="text/markdown",
url='http://github.com/paradoxysm/nnrf',
download_url = 'https://github.com/paradoxysm/nnrf/archive/0.9.1.tar.gz',
author='paradoxysm',
author_email='paradoxysm.dev@gmail.com',
license='BSD-3-Clause',
packages=find_packages(),
install_requires=[
'numpy',
'tqdm',
'sklearn',
],
python_requires='>=3.4, <4',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Intended Audience :: Science/Research',
],
keywords=['python','ml','neural-network','random-forest'],
zip_safe=True)