-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
42 lines (38 loc) · 1.33 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
'''
Build and deploy the package.
'''
import os
from setuptools import setup, find_packages
os.system("export PY_IGNORE_IMPORTMISMATCH=1")
os.system("cp VERSION src/EUKulele/static")
version = open('VERSION').read().strip()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name="EUKulele",
version=version,
description = ("A package to make the process of taxonomically classifying "
"microbial eukaryotes easier."),
keywords = "eukaryotic taxonomy classification",
conda_buildnum=1,
url="https://github.com/AlexanderLabWHOI/EUKulele",
author="Arianna Krinos",
author_email="[email protected]",
packages=['EUKulele','scripts'],
package_dir={'EUKulele': 'src/EUKulele'},
scripts=['bin/EUKulele','scripts/create_protein_table.py',
'scripts/download_database.sh',\
'scripts/remove_newlines.sh',\
'scripts/concatenate_busco.sh','scripts/configure_busco.sh',
'scripts/run_busco.sh',\
'scripts/install_dependencies.sh','scripts/after_job.sh',
'scripts/coordinate_batch.sh'],
license="MIT",
include=['code'],
include_package_data = True,
setup_requires=['pytest-runner'],
test_suite='tests',
tests_require=['pytest'],
install_requires=required,
zip_safe=False,
)