Skip to content

Commit 37ec10a

Browse files
committed
Prepare for release v0.1.0
1 parent 5795c45 commit 37ec10a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
</p>
44

55
------------------------------------------------
6-
> In short: Fast tokenization and structural analysis of
7-
any programming language
6+
> Fast tokenization and structural analysis of
7+
any programming language in Python
88

99
Programminng Language Processing (PLP) brings the capabilities of modern NLP systems to the world of programming languages.
1010
To achieve high performance PLP systems, existing methods often take advantage of the fully defined nature of programminng languages. Especially the syntactical structure can be exploited to gain knowledge about programs.

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
setup(
77
name = 'code_tokenize',
88
packages = ['code_tokenize'],
9-
version = '0.0.1.post1',
10-
license='apache-2.0',
9+
version = '0.1.0',
10+
license='MIT',
1111
description = 'Fast program tokenization and structural analysis in Python',
1212
long_description = long_description,
1313
long_description_content_type="text/markdown",
1414
author = 'Cedric Richter',
1515
author_email = 'cedricr.upb@gmail.com',
1616
url = 'https://github.com/cedricrupb/code_tokenize',
17-
download_url = 'https://github.com/cedricrupb/code_tokenize/archive/refs/tags/v0.0.1.tar.gz',
17+
download_url = 'https://github.com/cedricrupb/code_tokenize/archive/refs/tags/v0.1.0.tar.gz',
1818
keywords = ['code', 'tokenization', 'tokenize', 'program', 'language processing'],
1919
install_requires=[
2020
'tree_sitter',
@@ -25,7 +25,7 @@
2525
'Development Status :: 3 - Alpha',
2626
'Intended Audience :: Developers',
2727
'Topic :: Software Development :: Build Tools',
28-
'License :: OSI Approved :: Apache Software License',
28+
'License :: OSI Approved :: MIT License',
2929
'Programming Language :: Python :: 3',
3030
'Programming Language :: Python :: 3.6',
3131
'Programming Language :: Python :: 3.7',

0 commit comments

Comments
 (0)