-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
43 lines (37 loc) · 1.51 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
from pathlib import Path
import pkg_resources
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
VERSION = "1.0.2"
DESCRIPTION = (
"A python package Library which implement IA algorithms to detect cracks and failures on roads. "
"The package is wrapper around all the models and provides an interfaces to use them properly"
)
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="pavimentados",
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", "crack detections", "computer vision", "safe road"],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.9",
include_package_data=True,
)