-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (30 loc) · 1.48 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·32 lines (30 loc) · 1.48 KB
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
###########################################################################
# Copyright (C) 2010 by John B. Cole, PhD
# <john.cole@ars.usda.gov>
#
# Copyright: See COPYING file that comes with this distribution
###########################################################################
from setuptools import setup, find_packages
setup(
name = "PyPedal",
version = "2.0.4",
packages = find_packages(),
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
],
author = "John B. Cole, PhD",
author_email = "john.cole@ars.usda.gov",
description = "Tools for pedigree analysis",
long_description="PyPedal provides an API that may be used to maniuplate pedigrees in a number of ways. Key metrics include coefficients of inbreeding and relationship; effective founder and ancestor numbers; and expected inbreeding from a given mating. If you have Graphviz and pydot installed, PyPedal can be used to produce a graph from your pedigree.",
license = "GNU LGPL",
keywords = "Python pedigree genetic analysis diversity",
url = "http://pypedal.sourceforge.net/",
)