-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (43 loc) · 1.42 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
# Read the long description from the relevant file
with open(os.path.join(here, "LONG_DESCRIPTION.rst"), "r", encoding="utf-8") as fp:
long_description = fp.read()
version_contents = {}
with open(
os.path.join(here, "parcllabs", "__version__.py"), "r", encoding="utf-8"
) as fp:
exec(fp.read(), version_contents)
setup(
name="parcllabs",
version=version_contents["VERSION"],
description="Python SDK for ParclLabs API",
long_description=long_description,
long_description_content_type="text/x-rst",
author="ParclLabs",
author_email="[email protected]",
keywords="parcllabs api real estate analytics",
packages=find_packages(exclude=["tests", "tests.*"]),
url="https://github.com/ParclLabs/parcllabs-python",
install_requires=[
"requests",
"pandas",
"alive-progress",
"numpy",
"aiohttp",
"nest_asyncio",
"plotly",
"kaleido",
],
extras_require={"test": ["pytest", "responses"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
setup_requires=["wheel"],
)