-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 1.28 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
from setuptools import setup
setup(
name='kinshipsim',
version='2020.8',
packages=['kinshipsim', 'kinshipsim.scripts'],
include_package_data=True,
url='https://github.com/CompEvoMetu/kinshipsim',
license='GNU General Public License v3 (GPLv3)',
author='Team Neogene',
author_email='[email protected]',
description='A kinship simulation tool',
long_description="""The **kinshipsim** library has been implemented to infer the genetic relationships between
pairs of individuals. It enables the simulation of multiple pedigrees, using both autosomal and X chromosomal data,
and provides additional pre-processing options, e.g., SNPs reduction, pseudo-haploidization.""",
install_requires=['pandas', 'numpy', 'fire'],
python_requires='>=3',
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: Console",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering"
]
)