-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (39 loc) · 1.29 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "stylemod"
version = "0.9.1"
description = "Modular neural style transfer library supporting CNN and Transformer-based architectures."
authors = [{ name = "Justin Garofolo", email = "[email protected]" }]
license = { text = "MIT" }
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed"
]
dependencies = [
"torch >= 1.12.0",
"graphviz >= 0.20.0",
"tqdm >= 4.62.0",
"Pillow >= 8.4.0",
"torchvision >= 0.12.0",
"matplotlib >= 3.1.0"
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/ooojustin/stylemod"
Documentation = "https://github.com/ooojustin/stylemod#readme"
Source = "https://github.com/ooojustin/stylemod"
Tracker = "https://github.com/ooojustin/stylemod/issues"
[project.scripts]
stylemod = "stylemod.__main__:cli"