forked from joelarmstrong/repeatMaskerPipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 665 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 665 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
from setuptools import setup, find_packages
from setuptools.command.install import install
import os, sys
import subprocess
setup(
name = "repeatMaskerPipeline",
version = "0.1",
author = "Joel Armstrong",
package_dir = {'': 'src'},
packages = find_packages(where='src'),
include_package_data = True,
package_data = {
'repeatMaskerPipeline': []
},
# We use the __file__ attribute so this package isn't zip_safe.
zip_safe = False,
python_requires = '>=3.6',
install_requires = [],
entry_points= {
'console_scripts': ['repeatMaskerPipeline = repeatMaskerPipeline.repeatMaskerPipeline:main']},)