-
Notifications
You must be signed in to change notification settings - Fork 88
/
setup.py
44 lines (42 loc) · 2.02 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
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright (c) 2017, Anaconda, Inc. All rights reserved.
#
# Licensed under the terms of the BSD 3-Clause License.
# (See LICENSE.txt for details)
# -----------------------------------------------------------------------------
import setuptools
import versioneer
import io
setuptools.setup(name='anaconda-project',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
keywords=["conda anaconda project reproducible data science"],
url='http://github.com/Anaconda-Server/anaconda-project',
license='BSD 3-Clause',
author="Anaconda, Inc",
author_email='[email protected]',
maintainer='Anaconda, Inc',
maintainer_email='[email protected]',
description='Tool for encapsulating, running, and reproducing data science projects',
long_description=io.open("README.md", 'r', encoding='utf-8').read(),
zip_safe=False,
install_requires=[
"anaconda-client",
"conda-pack",
"requests",
"ruamel_yaml",
"tornado>=4.2",
"jinja2",
"tqdm",
],
entry_points={"console_scripts": [
"anaconda-project = anaconda_project.cli:main",
]},
packages=setuptools.find_packages(exclude=['contrib', 'docs', 'tests*']),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6'
])