-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (26 loc) · 844 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (26 loc) · 844 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
#!/usr/bin/env python3
__author__ = "DELEVOYE Guillaume"
__license__ = "MIT"
__version__ = "1.1.2"
__maintainer__ = "DELEVOYE Guillaume"
__email__ = "delevoye@ens.fr ; delevoye.guillaume@gmail.com"
__status__ = "Development"
from setuptools import setup, find_packages
setup(
name='kmers_removal',
description="Allows to remove user-specified lists of kmers from a genome assembly",
version='1.1.2',
author='DELEVOYE Guillaume',
author_email="delevoye@ens.fr",
packages=find_packages("."),
url="https://github.com/GDelevoye/kmers_removal",
package_data={'kmers_removal': ['notebook/*','testdata/*']},
python_requires='>=3',
install_requires=[
'pandas',
'tqdm',
],
entry_points={'console_scripts': [
"kmers_removal = kmers_removal.kmers_removal_launcher:main"
]},
)