-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (43 loc) · 1.7 KB
/
setup.py
File metadata and controls
48 lines (43 loc) · 1.7 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
44
45
46
47
48
from pathlib import Path
from pkg_resources import parse_requirements
from setuptools import find_packages, setup
LIBRARY_NAME = "quick_torch" # Rename according to te "library" folder
# List of requirements
with Path("requirements.txt").open() as requirements_txt:
install_requires = [
str(requirement) for requirement in parse_requirements(requirements_txt)
]
# Long description
long_description = Path("README.md").read_text()
setup(
name=LIBRARY_NAME,
packages=find_packages(include=[LIBRARY_NAME]),
version="1.0.4",
description=("Library that provides a QuickDraw dataset using the Pytorch API."),
url="https://github.com/framunoz/quick-torch",
long_description=long_description,
long_description_content_type="text/markdown",
author="Francisco Muñoz G.",
license="MIT",
license_files=["LICENSE"],
install_requires=install_requires,
python_requires=">=3.10",
setup_requires=["pytest-runner"],
tests_requires=["pytest==4.4.1"],
test_suite="tests",
classifiers=[
"Environment :: GPU :: NVIDIA CUDA :: 11.8",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Visualization",
],
)