forked from bioconda/bioconda-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.11 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.11 KB
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
# -*- coding: UTF-8 -*-
from setuptools import setup
# load version info
exec(open("bioconda_utils/version.py").read())
setup(
name='bioconda-utils',
version=__version__,
author="Johannes Köster, Ryan Dale, The Bioconda Team",
description="Utilities for building and managing conda packages",
license="MIT",
packages=["bioconda_utils"],
include_package_data=True,
data_files=[
(
'bioconda_utils',
[
'bioconda_utils/bioconda_utils-requirements.txt',
'bioconda_utils/config.schema.yaml',
],
)
],
entry_points={"console_scripts": [
"bioconda-utils = bioconda_utils.cli:main",
"bioconductor_skeleton = bioconda_utils.bioconductor_skeleton:main"
]},
classifiers=[
"Development Status :: 4 - Beta",
#"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3"
]
)