-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
56 lines (51 loc) · 2.18 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
VERSION = '1.1.0.8'
DESCRIPTION = 'TnSeeker'
LONG_DESCRIPTION = 'Versatile Python3 module for processing and analyzing anything related with Tn-Seq. Requires bowtie2 to be callable from terminal. File wise, only fastq and genbank annotation files are required.'
setup(
# the name must match the folder name
name="tnseeker",
version=VERSION,
author="Afonso M Bravo",
author_email="<[email protected]>",
url='https://github.com/afombravo/tnseeker',
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=["numpy",
"matplotlib >= 3.8",
"pandas >= 2.2.0",
"numba",
"biopython >= 1.83",
"datetime >= 5.4",
"argparse >= 1.4.0",
"regex >= 2023.12.25",
"multiprocess >= 0.70.16",
"pathlib >= 1.0.1",
"scipy >= 1.12.0",
"seaborn >= 0.13.2",
"statsmodels >= 0.14.1",
"colorama",
"fast2q >= 2.7.6",
"dataclasses",
"typing"],
entry_points={
'console_scripts': [
'tnseeker=tnseeker.__main__:main',
],
},
keywords=['tn-seq', 'essentiality','rb-seq'],
classifiers= [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
include_package_data=True,
package_data={'': ['data/*','data/test/*']},
)