forked from anyoptimization/pymoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (26 loc) · 813 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
29
30
31
32
import numpy
import setuptools
from Cython.Build import cythonize
from setuptools import setup, Extension
__author__ = "Julian Blank"
__version__ = '0.2.0-dev'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
long_description = ''
setup(
name="pymoo",
version=__version__,
author=__author__,
author_email="[email protected]",
description="Multi-Objective Optimization Algorithms",
long_description=long_description,
url="https://github.com/msu-coinlab/pymoo",
license='MIT',
keywords="optimization",
packages=setuptools.find_packages(),
install_requires=['pymop', 'numpy', 'scipy', 'matplotlib'],
ext_modules=cythonize("pymoo/cython/*.pyx", ),
include_dirs=[numpy.get_include()]
)