-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 935 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
from setuptools import setup, find_packages
from spso.version import __version__, __author__, __email__, __license__
import os
desc = "Simple particle swarm optimizer in python"
setup( name = 'spso',
version = __version__,
description = desc,
long_description = desc,
long_description_content_type = 'text/plain',
author = __author__,
author_email = __email__,
url = 'http://www.github.com/nicochidt/pythonspo',
packages = find_packages(),
scripts = [],
license = __license__,
classifiers = [
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Environment :: Console',
],
)