-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
49 lines (46 loc) · 1.29 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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
project = "floyd-cli"
version = "0.11.17"
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
long_description = readme.read()
setup(
name=project,
version=version,
description="Command line tool for Floyd",
long_description=long_description,
author="Floyd Labs Inc.",
author_email="support@floydhub.com",
url="https://github.com/floydhub/floyd-cli",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
zip_safe=False,
keywords="floyd",
install_requires=[
"click>=6.7,<7",
"clint>=0.5.1,<1",
"requests>=2.12.4,<3",
"requests-toolbelt>=0.7.1,<1",
"marshmallow>=2.11.1,<3.0.0b0",
"pytz>=2016.10",
"tabulate>=0.7.7,<1",
"pathlib2>=2.2.1,<3",
"PyYAML",
"raven",
"scandir;python_version<'3.5'",
],
setup_requires=[],
dependency_links=[],
entry_points={
"console_scripts": [
"floyd = floyd.main:cli",
"floyd-dev = floyd.development.dev:cli",
"floyd-local = floyd.development.local:cli",
],
},
tests_require=[
"pytest",
"mock>=1.0.1",
],
)