-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 1.48 KB
/
setup.py
File metadata and controls
37 lines (32 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
33
34
35
36
37
#!/usr/bin/env python
from setuptools import setup
LONG_DESCRIPTION = \
'''The program extracts regions of interest from Fasta or Genome Feature Format (GFF) genomes.
This is done given a set of seed sequences given as nucleotide strings in a multi-line fasta file.
The program can output fasta and GFF outputs or regions, and will giv multiple outputs around regions and their evidence.
The program takes in multiple fasta or GFF files at a single time and can also take multiple seed sequence pairs.'''
setup(
name='Magphi',
version='2.0.2',
author='Magnus Ganer Jespersen',
author_email='magnus.ganer.j@gmail.com',
packages=['Magphi'],
package_dir={'Magphi': 'Magphi'},
entry_points={
'console_scripts': ['Magphi = Magphi.__main__:main']
},
url='https://github.com/milnus/Magphi',
license='MIT license',
description=('A bioinformatics tool allowing for examnination and extraction of genomic features using seed sequences.'),
long_description=LONG_DESCRIPTION,
install_requires=['biopython>=1.79',
'pybedtools==0.8.2'],
keywords=['Genomic', 'extraction', 'bacteria', 'prokaryotes', 'bioinformatics'],
classifiers=[
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Development Status :: 4 - Beta']
)