forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-testing.py
executable file
·79 lines (70 loc) · 2.55 KB
/
setup-testing.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# conda is distributed under the terms of the BSD 3-clause license.
# Consult LICENSE.txt or http://opensource.org/licenses/BSD-3-Clause.
from __future__ import absolute_import, division, print_function, unicode_literals
import os
import sys
if 'develop' in sys.argv:
from setuptools import setup
else:
from distutils.core import setup
if not (sys.version_info[:2] == (2, 7) or sys.version_info[:2] >= (3, 3)):
sys.exit("conda is only meant for Python 2.7 or 3.3 and up. "
"current version: %d.%d" % sys.version_info[:2])
print("\n\n"
"WARNING: The utils/setup-testing.py is deprecated and scheduled for removal.\n"
" Consider transitioning tooling to make use of 'conda init'.\n"
"\n\n",
file=sys.stderr)
# When executing setup.py, we need to be able to import ourselves, this
# means that we need to add the src directory to the sys.path.
here = os.path.abspath(os.path.dirname(__file__))
src_dir = os.path.join(here, "..")
sys.path.insert(0, src_dir)
import conda # NOQA
from conda._vendor.auxlib import packaging # NOQA
with open(os.path.join(src_dir, "README.rst")) as f:
long_description = f.read()
install_requires = [
'pycosat >=0.6.3',
'requests >=2.12.4',
'ruamel.yaml >=0.11.14'
]
if sys.version_info < (3, 4):
install_requires.append('enum34')
setup(
name=conda.__name__,
version=conda.__version__,
author=conda.__author__,
author_email=conda.__email__,
url=conda.__url__,
license=conda.__license__,
description=conda.__summary__,
long_description=long_description,
classifiers=[
"Development Status :: 5 - Production/Stable",
"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",
],
packages=packaging.find_packages(exclude=("tests",
"tests.*",
"build",
"utils",
".tox")),
cmdclass={
'build_py': packaging.BuildPyCommand,
'sdist': packaging.SDistCommand,
},
install_requires=install_requires,
entry_points={
'console_scripts': [
"conda = conda.cli:main",
"conda-env = conda_env.cli.main:main"
],
},
zip_safe=False,
)