-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 1.04 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
from distutils.core import setup
setup(
name = 'setga',
packages = ['setga'],
license='MIT',
description = 'library designed to extract a minimal subset from a given set, optimizing a given (set of) objective(s). Based on the DEAP library.', # Give a short description about your library
author = 'Nikola Kalábová',
author_email = '[email protected]',
url = 'https://github.com/lavakin/setga',
version = "{{VERSION_PLACEHOLDER}}",
#version = 1.0,
keywords = ['Genetic algorithms', 'minimal subset', 'multi-objective', "optimization"],
long_description = "library designed to extract a minimal subset from a given set, optimizing a given (set of) objective(s). Based on the DEAP library.",
project_urls = {"Documentation" :"https://setga.readthedocs.io/en/latest/genindex.html"},
install_requires=[
'numpy',
'deap',
"matplotlib",
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
],
)