-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (20 loc) · 852 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
import os
from setuptools import find_packages, setup
HERE = os.path.dirname(os.path.abspath(__file__))
setup(
name="lfa_toolbox",
version="0.2",
description="LFA Toolbox is an educational library to play with fuzzy systems",
author="Gary Marigliano",
url="http://iict-space.heig-vd.ch/cpn/",
long_description=open(os.path.join(HERE, "README.md")).read(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
python_requires=">=3.5",
install_requires=["numpy>=1.10", "matplotlib>=2.1.1"],
setup_requires=["numpy>=1.10", "matplotlib>=2.1.1", "pytest-runner"],
tests_require=["pytest==3.3.2"],
include_package_data=True,
license="GPL",
classifier=["License :: OSI Approved :: GNU General Public License v3 (GPLv3)"],
)