forked from geatpy-dev/geatpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.27 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
35
36
37
38
39
40
41
# This is a list of files to install Geatpy
#
# Geatpy is a free toolbox: you can redistribute it and/or modify as you want.
#
# Geatpy is distributed in the hope that it will be useful for the genetic
# and evolutionary algorithm, you can get the tutorial from http://www.geatpy.com
#
# If you want to donate to it, please email [email protected]
from setuptools import setup, find_packages
import codecs
import os
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname), encoding='UTF-8').read()
LONG_DESCRIPTION = read("README.rst")
setup(name = "geatpy",
version = "1.0.1",
description = "This is Geatpy for Python",
author = "Geatpy Team",
author_email = "[email protected]",
url = "http://www.geatpy.com",
packages= find_packages(),
Scripts = ["geatpy/*"],
include_package_data = True, # Enabled list file: MANIFEST.in
install_requires=[
'numpy>=1.10.0',
'matplotlib>=1.5.1',
],
classifiers = [
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
long_description = LONG_DESCRIPTION,
zip_safe = False,
)