-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.15 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.15 KB
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
"""
setup.py
Funcionality: This file is used to create a package that can be installed using pip.
It is used to install the package in the local environment.
"""
import setuptools
requirements = [
"numpy",
"pandas",
"matplotlib",
"tqdm",
"tensorflow == 2.16.1",
"keras == 3.1",
"mlflow",
"pexpect",
"ipykernel",
"numba",
"gradio",
] # Add or remove the required packages for the package to work properly
setuptools.setup( # Add the required information for the package
name="project_name",
version="0.0.1",
author="Name LastName",
author_email="email@email.com",
description="A package to develop projects using NVIDIA GPUs",
long_description_content_type="text/markdown",
url="https://url/to/your/project",
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10,<=3.12",
)