forked from conda/conda-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·53 lines (48 loc) · 2.16 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
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
import sys
import versioneer
from setuptools import setup
if sys.version_info[:2] < (2, 7):
sys.exit("conda-build is only meant for Python >=2.7"
"Current Python version: %d.%d" % sys.version_info[:2])
# Don't proceed with 'unknown' in version
version_dict = versioneer.get_versions()
if version_dict['error']:
raise RuntimeError(version_dict["error"])
setup(
name="conda-build",
version=version_dict['version'],
cmdclass=versioneer.get_cmdclass(),
author="Continuum Analytics, Inc.",
author_email="conda@continuum.io",
url="https://github.com/conda/conda-build",
license="BSD 3-clause",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
description="tools for building conda packages",
long_description=open('README.rst').read(),
packages=['conda_build', 'conda_build.cli',
'conda_build.skeletons', 'conda_build.os_utils'],
entry_points={
'console_scripts': ['conda-build = conda_build.cli.main_build:main',
'conda-convert = conda_build.cli.main_convert:main',
'conda-develop = conda_build.cli.main_develop:main',
'conda-index = conda_build.cli.main_index:main',
'conda-inspect = conda_build.cli.main_inspect:main',
'conda-metapackage = conda_build.cli.main_metapackage:main',
'conda-render = conda_build.cli.main_render:main',
'conda-skeleton = conda_build.cli.main_skeleton:main',
]},
install_requires=['conda', 'requests', 'filelock', 'pyyaml', 'conda-verify',
'jinja2', 'pkginfo', 'glob2', 'beautifulsoup4'],
package_data={'conda_build': ['templates/*', 'cli-*.exe']},
zip_safe=False,
)