File: setup.py

package info (click to toggle)
genetic 0.1.1b-7
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 216 kB
  • ctags: 299
  • sloc: python: 1,042; makefile: 8
file content (25 lines) | stat: -rwxr-xr-x 809 bytes parent folder | download | duplicates (5)
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
#! /usr/bin/env python

# Genetic
# Copyright (C) 2001 Jean-Baptiste LAMY
#
# This program is free software. See README or LICENSE for the license terms.

import os.path, sys, distutils.core

if sys.argv[-1] == "sdist":
  sys.argv.extend(["-f", "--dist-dir", os.path.expanduser("~/python/dist")])


distutils.core.setup(name         = "Genetic",
                     version      = "0.1.1",
                     license      = "GPL",
                     description  = "Genetic algorythms in Python",
                     author       = "Jiba (LAMY Jean-Baptiste)",
                     author_email = "jiba@tuxfamily.org",
                     url          = "",

                     package_dir  = {"genetic" : ""},
                     packages     = ["genetic", "genetic.demo"],
                     )