-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 757 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 757 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
from pathlib import Path
from setuptools import find_packages, setup
from constructor_io import __version__
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="constructor-io",
version=__version__,
download_url='https://github.com/Constructor-io/constructor-io/tarball/' + __version__,
license="MIT",
description="Constructor.io Python Client",
author="Constructor.io Corporation",
author_email="info@constructor.io",
url="https://www.constructor.io",
install_requires=[
'requests~=2.26'
],
packages = find_packages(exclude=["tests.*", "tests"]),
long_description=long_description,
long_description_content_type='text/markdown',
)