Skip to content

Commit 5cbf574

Browse files
committed
Preparation for release
1 parent a551714 commit 5cbf574

File tree

4 files changed

+39
-1
lines changed

4 files changed

+39
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ To decide whether your code can be handled by code.diff please review the librar
8585

8686

8787
## Release history
88-
* 0.0.1
88+
* 0.1.0
8989
* Initial functionality
9090
* Documentation
9191
* SStuB Testing

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
code-tokenize >= 0.1.0
2+
apted >= 1.0.3

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[metadata]
2+
description-file = README.md
3+
ong_description_content_type = text/markdown

setup.py

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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 = '[email protected]',
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

Comments
 (0)