-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
35 lines (31 loc) · 1.23 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
import pkg_resources, os, pkgutil
from setuptools import setup, find_packages
import biobox_cli
def dependencies():
file_ = pkg_resources.resource_filename(__name__, os.path.join('requirements', 'default.txt'))
with open(file_, 'r') as f:
return f.read().splitlines()
setup(
name = 'biobox-cli',
version = biobox_cli.__version__,
description = 'Run biobox Docker containers on the command line',
author = 'bioboxes',
author_email = '[email protected]',
url = 'http://bioboxes.org',
scripts = ['bin/biobox'],
install_requires = dependencies(),
packages = find_packages(),
package_data = {'': ['assets/*']},
include_package_data = True,
classifiers = [
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research',
'Operating System :: POSIX'
],
)