Skip to content

Commit 1902ca1

Browse files
committed
really add pyproject.toml
1 parent 846bba1 commit 1902ca1

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "dot2tex"
7+
version = '2.12.0'
8+
9+
description = "A Graphviz to LaTeX converter"
10+
readme = "readme.md"
11+
requires-python = ">=3.7"
12+
dependencies = [
13+
"pyparsing >= 3.0",
14+
]
15+
authors = [
16+
{name = "Kjell Magne Fauske", email = "kjellmf@gmail.com"},
17+
]
18+
license = "MIT"
19+
20+
classifiers = [
21+
'Development Status :: 4 - Beta',
22+
'Environment :: Console',
23+
'Intended Audience :: Science/Research',
24+
'Natural Language :: English',
25+
'Operating System :: OS Independent',
26+
'Programming Language :: Python :: 3',
27+
'Topic :: Scientific/Engineering :: Visualization',
28+
'Topic :: Text Processing :: Markup :: LaTeX',
29+
'Topic :: Utilities',
30+
]
31+
32+
[project.urls]
33+
"Homepage" = "https://github.com/sagemath/dot2tex"
34+
35+
[project.scripts]
36+
dot2tex = "dot2tex.dot2tex:main"
37+
38+
[project.optional-dependencies]
39+
test = [
40+
"pytest",
41+
]

0 commit comments

Comments
 (0)