-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 1.38 KB
/
setup.py
File metadata and controls
42 lines (36 loc) · 1.38 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
from pathlib import Path
import pkg_resources
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
VERSION = "2.0.0"
DESCRIPTION = (
"A python package to interact with Inter-American Development Bank machine learning models to automatic "
"label elements for iRAP certification"
)
LONG_DESCRIPTION = (this_directory / "README.md").read_text()
with Path("requirements.txt").open() as requirements_txt:
install_requires = [str(requirement) for requirement in pkg_resources.parse_requirements(requirements_txt)]
setup(
# the name must match the folder name 'verysimplemodule'
name="viasegura",
version=VERSION,
author="Jose Maria Marquez Blanco",
author_email="jose.marquez.blanco@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=install_requires,
keywords=["Machine Learning", "safe road"],
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.9",
include_package_data=True,
)