1
+ [build-system ]
2
+ requires = [" setuptools" ]
3
+ build-backend = " setuptools.build_meta"
4
+
5
+ [project ]
6
+ name = " code_diff"
7
+ version = " v0.1.3"
8
+ description = " Fast AST based code differencing in Python"
9
+ readme = " README.md"
10
+ requires-python = " >= 3.8"
11
+ license = { file = " LICENSE.txt" }
12
+ keywords = [" code" , " differencing" , " AST" , " CST" , " program" , " language processing" ]
13
+
14
+ authors = [{
name =
" Cedric Richter" ,
email =
" [email protected] " }]
15
+ maintainers = [{
name =
" Cedric Richter" ,
email =
" [email protected] " }]
16
+
17
+ classifiers = [
18
+ " Development Status :: 3 - Alpha" ,
19
+ " Intended Audience :: Developers" ,
20
+ " Topic :: Software Development :: Build Tools" ,
21
+ " License :: OSI Approved :: MIT License" ,
22
+ " Programming Language :: Python :: 3" ,
23
+ " Programming Language :: Python :: 3.6" ,
24
+ " Programming Language :: Python :: 3.7" ,
25
+ " Programming Language :: Python :: 3.8" ,
26
+ " Programming Language :: Python :: 3.9" ,
27
+ " Programming Language :: Python :: 3.10" ,
28
+ " Programming Language :: Python :: 3.11" ,
29
+ " Programming Language :: Python :: 3.12" ,
30
+ " Programming Language :: Python :: 3.13" ,
31
+ " Programming Language :: Python :: 3 :: Only" ,
32
+ ]
33
+
34
+ dependencies = [" code_tokenize" , " apted" ]
35
+
36
+ [project .urls ]
37
+ "Homepage" = " https://github.com/cedricrupb/code_diff"
38
+ "Bug Reports" = " https://github.com/cedricrupb/code_diff/issues"
39
+ "Source" = " https://github.com/cedricrupb/code_diff"
0 commit comments