-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 913 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 913 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import versioneer
__author__ = 'Matthew L. Bendall'
__copyright__ = "Copyright (C) 2023 Matthew L. Bendall"
setup(
name='telebuilder',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Identify transposable element loci from repeat annotations',
url='http://github.com/mlbendall/telebuilder',
author='Matthew L. Bendall',
author_email='bendall@gwu.edu',
license='MIT',
packages=find_packages(),
install_requires=[
'intervaltree',
'biopython',
],
entry_points={
'console_scripts': [
'buildERV=telebuilder.buildERV:console',
'analyzeERV=telebuilder.analyzeERV:console',
'buildL1=telebuilder.buildL1:console',
'gtftools=telebuilder.gtftools:console',
],
},
zip_safe=False,
)