-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 975 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 975 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
from setuptools import setup, find_packages
# Read README.md file for long description
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# Read version from VERSION file
with open("VERSION", "r", encoding="utf-8") as fh:
version = fh.read()
# Read requirements from requirements.txt file
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.read().splitlines()
# Setup configuration
setup(
name="lumino-api-sdk-python",
version=version,
author="Lumino Labs AI",
author_email="engg@luminolabs.ai",
license="Apache License 2.0",
description="A Python SDK for interacting with the Lumino Labs API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/luminolabs/api-sdk-python",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.10",
install_requires=requirements,
)