File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ## 1.0.0 (2022-04-21)
2+ - Update to Python 3
13## 0.1.1 (2016-05-24)
24- Update to be compatible with the latest version of kayvee
35
Original file line number Diff line number Diff line change 1- 0.1.1
1+ 1.0.0
Original file line number Diff line number Diff line change 11kayvee == 2.0.2
2+ future >= 0.18.2
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22
3+ from builtins import str
34import os
45import sys
56from setuptools import setup , find_packages
1415with open (os .path .join (here , 'VERSION' )) as f :
1516 VERSION = f .read ().strip ()
1617
17- pr_kwargs = {}
18- if pkg_resources .get_distribution ("pip" ).version >= '6.0' :
19- pr_kwargs = {"session" : False }
18+ pr_kwargs = {"session" : False }
2019
2120install_reqs = parse_requirements (
2221 os .path .join (
3130 author_email = 'tech-notify@clever.com' ,
3231 url = 'https://github.com/Clever/discovery-python/' ,
3332 packages = ['discovery' ],
34- install_requires = [str (ir .req ) for ir in install_reqs ],
33+ install_requires = [str (ir .requirement ) for ir in install_reqs ],
3534 setup_requires = ['nose>=1.0' ],
3635 test_suite = 'nose.collector' ,
3736 long_description = """\
You can’t perform that action at this time.
0 commit comments