-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.35 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import os
import setuptools
from setuptools import setup
CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
PACKAGE_NAME = "lume"
VERSION = open("lume/VERSION", "r").read()
# The text of the README file
with open(os.path.join(CURRENT_DIR, "README.md")) as fid:
README = fid.read()
with open("requirements/requirements.txt") as f:
required = f.read().splitlines()
setup(
name=PACKAGE_NAME,
version=VERSION,
description="Lume",
long_description=README,
long_description_content_type="text/markdown",
keywords=["lume"],
url="https://github.com/alice-biometrics/lume",
author="Alice Biometrics",
author_email="support@alicebiometrics.com",
license="MIT",
install_requires=required,
entry_points={"console_scripts": ["lume = lume.src.application.cli.lume:main"]},
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
packages=setuptools.find_packages(),
include_package_data=True,
zip_safe=False,
)