forked from samgiles/slumber
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (23 loc) · 788 Bytes
/
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
import os.path
from setuptools import setup, find_packages
import sys
install_requires = ["requests"]
if sys.version_info < (2, 6):
install_requires.append("simplejson")
base_dir = os.path.dirname(os.path.abspath(__file__))
setup(
name = "slumber",
version = "0.5.3",
description = "A library that makes consuming a REST API easier and more convenient",
long_description="\n\n".join([
open(os.path.join(base_dir, "README.rst"), "r").read(),
open(os.path.join(base_dir, "CHANGELOG.rst"), "r").read()
]),
url = "http://slumber.in/",
author = "Donald Stufft",
author_email = "[email protected]",
packages = find_packages(),
zip_safe = False,
install_requires = install_requires,
test_suite = "tests.get_tests",
)