-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
34 lines (33 loc) · 1.09 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
from setuptools import setup, find_packages
setup(
name = 'nsgaiii',
version = '0.1.0',
author = 'Luis Martí',
author_email = '[email protected]',
description = ('An implementation of the NSGA-III algorithm in Python'),
license = 'LGNU',
keywords = ['evolutionary algorithms','genetic algorithms','ga','nsga','moea', 'multi-objective optimization','emoa', 'emo', 'nsga-iii'],
url = 'http://lmarti.github.io/nsgaiii/',
packages = find_packages(),
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
include_package_data = False,
install_requires = [
'numpy','deap'
],
tests_require = [],
extras_require = {
'docs': [
'Sphinx',
'numpydoc',
],
'tests': [],
},
)