-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
15 lines (15 loc) · 799 Bytes
/
Copy pathsetup.py
File metadata and controls
15 lines (15 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from distutils.core import setup
setup(
name = 'multiple-recessives',
packages = ['multiple-recessives'], # this must be the same as the name above
version = '0.1',
description = 'Programs for simulation of strategies for managing multiple recessives in a dairy cattle population. .',
author = 'John B. Cole',
author_email = 'john.cole@ars.usda.gov',
url = 'https://github.com/wintermind/multiple-recessives',
download_url = 'https://github.com/wintermind/multiple-recessives/tarball/0.1',
keywords = ['simulation', 'dairy cattle', 'mating strategies', 'recessive disorders'],
classifiers = ['Development Status :: 3 - Alpha', 'Intended Audience :: Science/Research',
'License :: Public Domain', 'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering'],
)