1+ from setuptools import setup
2+
3+ with open ("README.md" , "r" ) as f :
4+ long_description = f .read ()
5+
6+ setup (
7+ name = 'code_diff' ,
8+ packages = ['code_diff' ],
9+ version = '0.1.0' ,
10+ license = 'MIT' ,
11+ description = 'Fast AST based code differencing in Python' ,
12+ long_description = long_description ,
13+ long_description_content_type = "text/markdown" ,
14+ author = 'Cedric Richter' ,
15+ author_email = 'cedricr.upb@gmail.com' ,
16+ url = 'https://github.com/cedricrupb/code_diff' ,
17+ download_url = 'https://github.com/cedricrupb/code_diff/archive/refs/tags/v0.1.0.tar.gz' ,
18+ keywords = ['code' , 'differencing' , 'AST' , 'program' , 'language processing' ],
19+ install_requires = [
20+ 'code-tokenize'
21+ ],
22+ classifiers = [
23+ 'Development Status :: 3 - Alpha' ,
24+ 'Intended Audience :: Developers' ,
25+ 'Topic :: Software Development :: Build Tools' ,
26+ 'License :: OSI Approved :: MIT License' ,
27+ 'Programming Language :: Python :: 3' ,
28+ 'Programming Language :: Python :: 3.6' ,
29+ 'Programming Language :: Python :: 3.7' ,
30+ 'Programming Language :: Python :: 3.8' ,
31+ 'Programming Language :: Python :: 3.9' ,
32+ ],
33+ )
0 commit comments