forked from RGF-team/rgf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (23 loc) · 810 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
from setuptools import setup, find_packages
import re
import os
version = '0.0.0'
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
try:
import pypandoc
read_md = lambda f: pypandoc.convert(f, 'rst')
except ImportError:
print("warning: pypandoc module not found, could not convert Markdown to RST")
read_md = lambda f: open(f, 'r').read()
setup(name='rgf_sklearn',
version=version,
description='Scikit-Learn like Regularized Greedy Forest Wrapper',
keywords = 'Machine Learning',
author='Ryosuke Fukatani',
author_email='nannyakannya@gmail.com',
url='https://github.com/fukatani/rgf_sklearn',
license="Apache License 2.0",
packages=find_packages(),
long_description=read_md('Readme.md'),
)