-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (34 loc) · 1.34 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
31
32
33
34
35
import setuptools
setuptools.setup(
name='flippyr',
version='0.6.1',
description='Find reference mismatches in PLINK filesets and fix them.',
long_description=('A simple python script to search for allele switches,\n'
'strand flips, multiallelic sites, ambiguous sites,\n'
'and indels. The output is in the form of a .bim-like\n'
'table and a log file.'),
url='https://github.com/BEFH/flippyr',
author='Brian Fulton-Howard',
author_email='brian.fulton-howard@mssm.edu',
license='MIT',
keywords='bim PLINK FASTA genomics qc',
py_modules=['flippyr'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft',
],
install_requires=['pyfaidx','pandas'],
entry_points={
'console_scripts': ['flippyr=flippyr:main'],
},
)