-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (24 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
# -*- coding: utf-8 -*-
"""
Author : JasonGUTU
Email : hellojasongt@gmail.com
Python : anaconda3
Date : 2016/11/24
"""
import os
from setuptools import setup
from setuptools import find_packages
setup(
name = 'NAA',
version = '0.0.1',
author = 'JasonGUTU',
author_email = 'hellojasongt@gmail.com',
url = '',
keywords = ('Global Optimization', 'Evolutionary computation', 'Natural Aggregation Algorithm', 'Collective Decision Making'),
description = 'Natural Aggregation Algorithm: A New Powerful Global Optimizer over Continuous Spaces',
license = 'MIT License',
install_requires = ['numpy'],
classifiers=['Development Status :: 3 - Alpha', 'Programming Language :: Python :: 3.5'],
packages = find_packages(exclude=['docs', 'test']),
platforms = 'any',
)