forked from samgiles/slumber
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 684 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup
install_requires = ["requests"]
base_dir = os.path.dirname(os.path.abspath(__file__))
setup(
name = "slumber",
version = "0.6.1.dev",
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 = "donald.stufft@gmail.com",
packages = ["slumber"],
zip_safe = False,
install_requires = install_requires,
test_suite = "tests.get_tests",
)