-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (26 loc) · 963 Bytes
/
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
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",
version=version,
author="Lumino Labs AI",
author_email="[email protected]",
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/lumino-sdk-python",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.10",
install_requires=requirements,
)