-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 686 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 686 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
from setuptools import setup
import sixe_idp
setup(
name='6estates-idp',
version=sixe_idp.__version__,
description='Python SDK for IDP API by 6Estates Pte Ltd',
long_description="""
6Estates IDP SDK
==================
Read more on https://idp-sdk-doc.6estates.com/python/
""",
author='guosihan',
author_email='sihan.6estates@gmail.com',
url="https://github.com/6estates/idp-python",
license='BSD 2-clause',
packages=['sixe_idp'],
install_requires=['requests'],
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)