📦 sorend / fylearn

📄 setup.py · 44 lines
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# -*- coding: utf-8 -*-
"""fylearn

:author: Soren Atmakuri
:copyright: 2013-2019
:license: MIT

fylearn, a Python library for fuzzy machine learning.
"""
from setuptools import setup, Distribution, find_packages

Distribution().fetch_build_eggs('versiontag')
from versiontag import get_version, cache_git_tag

cache_git_tag()

MY_VERSION = get_version(pypi=True)

Distribution().fetch_build_eggs('pypandoc')
import pypandoc


setup(
    name='fylearn',
    packages=find_packages(),
    version=MY_VERSION,
    description='Fuzzy Machine Learning Algorithms',
    long_description=pypandoc.convert_file('README.md', 'rst'),
    author='Søren Atmakuri Davidsen',
    author_email='sorend@cs.svu-ac.in',
    url='https://github.com/sorend/fylearn',
    download_url='https://github.com/sorend/fylearn/tarball/%s' % (MY_VERSION,),
    license='MIT',
    keywords=['machine learning', 'fuzzy logic', 'scikit-learn'],
    classifiers=['License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3'],
    install_requires=[
        'numpy>=1.16',
        'scipy>=1.3',
        'scikit-learn>=0.20',
    ],
    setup_requires=['pytest-runner', 'wheel', 'pypandoc'],
    tests_require=['pytest'],
)