forked from GearPlug/highlevel-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 721 Bytes
/
setup.py
File metadata and controls
18 lines (17 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
setup(
name='highlevel-python',
version='0.1.0', # Update this version as needed
description='A Python package to interface with HighLevel API.',
author='Justin Farmer',
author_email='justinlf@gmail.com',
url='https://github.com/godzilla74/highlevel-python',
packages=find_packages(), # Automatically find your packages
install_requires=[], # Add external dependencies if needed
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License', # Or any other license
'Operating System :: OS Independent',
],
python_requires='>=3.6', # Specify minimum Python version
)