File: setup.py

package info (click to toggle)
genetic 0.1.1b%2Bgit20170527.98255cb-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 156 kB
  • sloc: python: 380; makefile: 6
file content (44 lines) | stat: -rw-r--r-- 1,150 bytes parent folder | download | duplicates (3)
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
42
43
44
"""
Setup module
"""


from setuptools import setup, find_packages


setup(
    name='genetic',
    version='0.1.dev3',

    description=("A versatile distributable genetic algorithm build with "
                 "flexibility and ease of use in mind"),

    url="https://github.com/grayfall/genetic.git",

    # Author details
    author="Ilia Korvigo",
    author_email="ilia.korvigo@gmail.com",

    license="MIT",

    classifiers=[
        "Development Status :: 2 - Pre-Alpha",
        "Intended Audience :: Developers",
        "Topic :: Software Development :: Libraries",
        "Topic :: Scientific/Engineering ",
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 3.3",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: 3.5",
    ],

    # What does your project relate to?
    keywords=("genetic algorithm, multiprocessing, numerical optimisation,"
              "stochastic optimisation"),

    packages=find_packages("./"),

    install_requires=["numpy>=1.11.0",
                      "scipy>=0.17.0",
                      "multiprocess>=0.70.4"],
)