-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 855 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 855 Bytes
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
import os
import sys
sys.path.insert(0, os.path.abspath("."))
from setuptools import setup, find_packages
from radar.version import VERSION
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="radar-python",
version=VERSION,
description="Python bindings for the Radar API",
author="Radar",
author_email="support@radar.io",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests",]),
python_requires=">=3.4",
install_requires=["requests >= 2.20"],
tests_require=["pytest >= 4.6.2"],
url="https://github.com/radarlabs/radar-python",
license="MIT",
project_urls={
"Documentation": "https://radar.io/documentation/api",
"Source Code": "https://github.com/radarlabs/radar-python",
},
)